e477631ad7
Fixed vsync on X11. Updated GraphicsContext interface, for better extensibility. Some public functions were moved to IGraphicsContextInternal. Renamed DisplayDevice.PrimaryDisplay to DisplayDevice.Default. Updated and documented new GameWindow constructors. Improved GameWindow.Exit, added GameWindow.ExitAsync() and improved error handling. Improved GraphicsContext and NativeGLWindow APIs (construction in constructor). Made ContextHandle public.
45 lines
1.4 KiB
C#
45 lines
1.4 KiB
C#
#region --- License ---
|
|
/* Licensed under the MIT/X11 license.
|
|
* Copyright (c) 2006-2008 the OpenTK Team.
|
|
* This notice may not be removed from any source distribution.
|
|
* See license.txt for licensing detailed licensing details.
|
|
*/
|
|
#endregion
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
using OpenTK.Input;
|
|
using OpenTK.Graphics;
|
|
|
|
namespace OpenTK.Platform
|
|
{
|
|
/// <summary>
|
|
/// This interface supports OpenTK, and is not intended for use by OpenTK programs.
|
|
/// </summary>
|
|
internal interface INativeGLWindow : IResizable, IDisposable
|
|
{
|
|
void CreateWindow(int width, int height, GraphicsMode mode, out IGraphicsContext context);
|
|
void DestroyWindow();
|
|
void ProcessEvents();
|
|
void PointToClient(ref System.Drawing.Point p);
|
|
void PointToScreen(ref System.Drawing.Point p);
|
|
|
|
bool Exists { get; }
|
|
IWindowInfo WindowInfo { get; }
|
|
|
|
string Title { get; set; }
|
|
bool Visible { get; set; }
|
|
bool IsIdle { get; }
|
|
//IGraphicsContext Context { get; }
|
|
IInputDriver InputDriver { get; }
|
|
bool Fullscreen { get; set; }
|
|
|
|
event CreateEvent Create;
|
|
event DestroyEvent Destroy;
|
|
}
|
|
|
|
public delegate void CreateEvent(object sender, EventArgs e);
|
|
public delegate void DestroyEvent(object sender, EventArgs e);
|
|
}
|