using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; namespace OpenTK.Platform.MacOS { using Graphics; class CarbonGLControl : IGLControl { GraphicsMode mode; Control control; internal CarbonGLControl(GraphicsMode mode, Control owner) { this.mode = mode; this.control = owner; } #region IGLControl Members public OpenTK.Graphics.GraphicsContext CreateContext() { return new GraphicsContext(mode, WindowInfo); } // TODO: Fix this bool lastIsIdle = false; public bool IsIdle { get { lastIsIdle = !lastIsIdle; return lastIsIdle; } } public IWindowInfo WindowInfo { get { control.CreateControl(); return new CarbonWindowInfo(control.Handle, false, true); } } #endregion } }