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 } }