mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 21:15:28 +00:00
76641d46d6
Improved CreateDummyContext logic to detect and use the context handle of the current thread or a specified handle. Removed GetCurrentContext() methods from platform-specific context implementations (everything now goes through the relevant IPlatformFactories).
49 lines
1.3 KiB
C#
49 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenTK.Platform.X11
|
|
{
|
|
using Graphics;
|
|
|
|
class X11Factory : IPlatformFactory
|
|
{
|
|
#region IPlatformFactory Members
|
|
|
|
public INativeGLWindow CreateGLNative()
|
|
{
|
|
return new X11GLNative();
|
|
}
|
|
|
|
public IGLControl CreateGLControl(GraphicsMode mode, GLControl owner)
|
|
{
|
|
return new X11GLControl(mode, owner);
|
|
}
|
|
|
|
public IDisplayDeviceDriver CreateDisplayDeviceDriver()
|
|
{
|
|
return new X11XrandrDisplayDevice();
|
|
}
|
|
|
|
public IGraphicsContext CreateGLContext(GraphicsMode mode, IWindowInfo window, IGraphicsContext shareContext, bool DirectRendering, int major, int minor, GraphicsContextFlags flags)
|
|
{
|
|
return new X11GLContext(mode, window, shareContext, DirectRendering, major, minor, flags);
|
|
}
|
|
|
|
public OpenTK.Graphics.GraphicsContext.GetCurrentContextDelegate CreateGetCurrentGraphicsContext()
|
|
{
|
|
return (GraphicsContext.GetCurrentContextDelegate)delegate
|
|
{
|
|
return new ContextHandle(Glx.GetCurrentContext());
|
|
};
|
|
}
|
|
|
|
public IGraphicsMode CreateGraphicsMode()
|
|
{
|
|
return new X11GraphicsMode();
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|