mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-14 05:15:34 +00:00
45 lines
951 B
C#
45 lines
951 B
C#
|
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);
|
||
|
}
|
||
|
|
||
|
public bool IsIdle
|
||
|
{
|
||
|
get { return true; }
|
||
|
}
|
||
|
|
||
|
public IWindowInfo WindowInfo
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
control.CreateControl();
|
||
|
return new CarbonWindowInfo(control.Handle, false, true);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endregion
|
||
|
}
|
||
|
}
|