mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 20:05:37 +00:00
41 lines
970 B
C#
41 lines
970 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenTK.Platform.Windows
|
|
{
|
|
using Graphics;
|
|
|
|
class WinFactory : IPlatformFactory
|
|
{
|
|
#region IPlatformFactory Members
|
|
|
|
public INativeGLWindow CreateGLNative()
|
|
{
|
|
return new WinGLNative();
|
|
}
|
|
|
|
public IGLControl CreateGLControl(GraphicsMode mode, GLControl owner)
|
|
{
|
|
return new WinGLControl(mode, owner);
|
|
}
|
|
|
|
public IDisplayDeviceDriver CreateDisplayDeviceDriver()
|
|
{
|
|
return new WinDisplayDeviceDriver();
|
|
}
|
|
|
|
public IGraphicsContext CreateGLContext(GraphicsMode mode, IWindowInfo window, IGraphicsContext shareContext, bool DirectRendering)
|
|
{
|
|
return new WinGLContext(mode, window, shareContext);
|
|
}
|
|
|
|
public IGraphicsMode CreateGraphicsMode()
|
|
{
|
|
return new WinGraphicsMode();
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|