b57e58dc47
SDL2 still fails with "not an OpenGL window".
22 lines
356 B
C#
22 lines
356 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenTK.Platform.Dummy
|
|
{
|
|
class DummyWindowInfo : IWindowInfo
|
|
{
|
|
#region IDisposable Members
|
|
|
|
public void Dispose()
|
|
{
|
|
}
|
|
|
|
#endregion
|
|
|
|
public IntPtr Handle
|
|
{
|
|
get { return IntPtr.Zero; }
|
|
}
|
|
}
|
|
}
|