mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 00:45:41 +00:00
Removed obsolete code.
This commit is contained in:
parent
3f9470e562
commit
daed9943a8
|
@ -36,7 +36,7 @@ namespace OpenTK.Platform.MacOS
|
||||||
using Carbon;
|
using Carbon;
|
||||||
using Graphics;
|
using Graphics;
|
||||||
|
|
||||||
class CarbonGLNative : INativeGLWindow, INativeWindow
|
class CarbonGLNative : INativeWindow
|
||||||
{
|
{
|
||||||
#region Fields
|
#region Fields
|
||||||
|
|
||||||
|
|
|
@ -37,11 +37,6 @@ namespace OpenTK.Platform.MacOS
|
||||||
{
|
{
|
||||||
#region IPlatformFactory Members
|
#region IPlatformFactory Members
|
||||||
|
|
||||||
public INativeGLWindow CreateGLNative()
|
|
||||||
{
|
|
||||||
throw new NotImplementedException();
|
|
||||||
}
|
|
||||||
|
|
||||||
public INativeWindow CreateNativeWindow(int x, int y, int width, int height, string title, GraphicsMode mode, GameWindowFlags options, DisplayDevice device)
|
public INativeWindow CreateNativeWindow(int x, int y, int width, int height, string title, GraphicsMode mode, GameWindowFlags options, DisplayDevice device)
|
||||||
{
|
{
|
||||||
return new CarbonGLNative(x, y, width, height, title, mode, options, device);
|
return new CarbonGLNative(x, y, width, height, title, mode, options, device);
|
||||||
|
|
|
@ -38,11 +38,6 @@ using OpenTK.Input;
|
||||||
{
|
{
|
||||||
#region IPlatformFactory Members
|
#region IPlatformFactory Members
|
||||||
|
|
||||||
public INativeGLWindow CreateGLNative()
|
|
||||||
{
|
|
||||||
throw new NotSupportedException();
|
|
||||||
}
|
|
||||||
|
|
||||||
public INativeWindow CreateNativeWindow(int x, int y, int width, int height, string title, GraphicsMode mode, GameWindowFlags options, DisplayDevice device)
|
public INativeWindow CreateNativeWindow(int x, int y, int width, int height, string title, GraphicsMode mode, GameWindowFlags options, DisplayDevice device)
|
||||||
{
|
{
|
||||||
return new WinGLNative(x, y, width, height, title, options, device);
|
return new WinGLNative(x, y, width, height, title, options, device);
|
||||||
|
|
Loading…
Reference in a new issue