Opentk/Source/OpenTK/Platform/Dummy/DummyWindowInfo.cs
Stefanos A. b57e58dc47 Implemented Sdl2GLControl
SDL2 still fails with "not an OpenGL window".
2013-09-30 20:47:29 +02:00

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; }
}
}
}