mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-01 13:35:33 +00:00
27 lines
521 B
C#
27 lines
521 B
C#
|
using OpenTK.Graphics;
|
|||
|
|
|||
|
namespace OpenTK.Platform.Dummy
|
|||
|
{
|
|||
|
class DummyGLControl : IGLControl
|
|||
|
{
|
|||
|
#region IGLControl Members
|
|||
|
|
|||
|
public OpenTK.Graphics.GraphicsContext CreateContext()
|
|||
|
{
|
|||
|
return new GraphicsContext(null, null);
|
|||
|
}
|
|||
|
|
|||
|
public bool IsIdle
|
|||
|
{
|
|||
|
get { return false; }
|
|||
|
}
|
|||
|
|
|||
|
public IWindowInfo WindowInfo
|
|||
|
{
|
|||
|
get { return new DummyWindowInfo(); }
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
}
|
|||
|
}
|