mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-25 08:25:37 +00:00
INativeGLWindow no longer inherits from IGLcontrol. Fixes build problems, too.
This commit is contained in:
parent
2e09aa16b6
commit
50e0da4392
|
@ -15,7 +15,7 @@ namespace OpenTK.Platform
|
|||
/// <summary>
|
||||
/// This interface supports OpenTK, and is not intended for use by OpenTK programs.
|
||||
/// </summary>
|
||||
interface INativeGLWindow : IGLControl, IResizable, IDisposable
|
||||
interface INativeGLWindow : IResizable, IDisposable
|
||||
{
|
||||
void CreateWindow(DisplayMode mode);
|
||||
void DestroyWindow();
|
||||
|
@ -26,6 +26,8 @@ namespace OpenTK.Platform
|
|||
|
||||
string Title { get; set; }
|
||||
bool Visible { get; set; }
|
||||
bool IsIdle { get; }
|
||||
IGLContext Context { get; }
|
||||
|
||||
IInputDriver InputDriver { get; }
|
||||
|
||||
|
|
Loading…
Reference in a new issue