mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 06:05:37 +00:00
b57e58dc47
SDL2 still fails with "not an OpenGL window".
23 lines
356 B
C#
23 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; }
|
|
}
|
|
}
|
|
}
|