b630d84add
Updated everything to not use raw window handles, but rather WindowInfo objects. Added code that (hopefully) creates an invisible input window for X11.
20 lines
507 B
C#
20 lines
507 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenTK.Platform
|
|
{
|
|
/// <summary>
|
|
/// This interface supports OpenTK, and is not intended for use by OpenTK programs.
|
|
/// </summary>
|
|
interface INativeGLWindow : IGLControl, IResizable
|
|
{
|
|
void CreateWindow(DisplayMode mode);
|
|
void ProcessEvents();
|
|
void Exit();
|
|
|
|
bool Created { get; }
|
|
bool Quit { get; }
|
|
IWindowInfo WindowInfo { get; }
|
|
}
|
|
}
|