mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 15:25:32 +00:00
e433aad4b4
It consists solely of DllImports that will be initialized on first use, regardless of the existence of an OpenGL context.
125 lines
3.3 KiB
C#
125 lines
3.3 KiB
C#
#region --- License ---
|
|
/* Licensed under the MIT/X11 license.
|
|
* Copyright (c) 2006-2008 the OpenTK Team.
|
|
* This notice may not be removed from any source distribution.
|
|
* See license.txt for licensing detailed licensing details.
|
|
*/
|
|
#endregion
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Threading;
|
|
|
|
using OpenTK.Graphics;
|
|
|
|
namespace OpenTK.Platform.Dummy
|
|
{
|
|
/// \internal
|
|
/// <summary>
|
|
/// An empty IGraphicsContext implementation to be used inside the Visual Studio designer.
|
|
/// This class supports OpenTK, and is not intended for use by OpenTK programs.
|
|
/// </summary>
|
|
internal sealed class DummyGLContext : DesktopGraphicsContext
|
|
{
|
|
readonly GraphicsContext.GetAddressDelegate Loader;
|
|
|
|
int swap_interval;
|
|
static int handle_count;
|
|
Thread current_thread;
|
|
|
|
#region --- Constructors ---
|
|
|
|
public DummyGLContext()
|
|
{
|
|
Handle = new ContextHandle(
|
|
new IntPtr(Interlocked.Increment(
|
|
ref handle_count)));
|
|
}
|
|
|
|
public DummyGLContext(ContextHandle handle, GraphicsContext.GetAddressDelegate loader)
|
|
: this()
|
|
{
|
|
if (handle != ContextHandle.Zero)
|
|
{
|
|
Handle = handle;
|
|
}
|
|
Loader = loader;
|
|
Mode = new GraphicsMode(new IntPtr(2), 32, 16, 0, 0, 0, 2, false);
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region --- IGraphicsContext Members ---
|
|
|
|
public override void SwapBuffers() { }
|
|
|
|
public override void MakeCurrent(IWindowInfo info)
|
|
{
|
|
Thread new_thread = Thread.CurrentThread;
|
|
// A context may be current only on one thread at a time.
|
|
if (current_thread != null && new_thread != current_thread)
|
|
{
|
|
throw new GraphicsContextException(
|
|
"Cannot make context current on two threads at the same time");
|
|
}
|
|
|
|
if (info != null)
|
|
{
|
|
current_thread = Thread.CurrentThread;
|
|
}
|
|
else
|
|
{
|
|
current_thread = null;
|
|
}
|
|
}
|
|
|
|
public override bool IsCurrent
|
|
{
|
|
get { return current_thread != null && current_thread == Thread.CurrentThread; }
|
|
}
|
|
|
|
public override IntPtr GetAddress(string function)
|
|
{
|
|
return Loader(function);
|
|
}
|
|
|
|
public override IntPtr GetAddress(IntPtr function)
|
|
{
|
|
return IntPtr.Zero;
|
|
}
|
|
|
|
public override int SwapInterval
|
|
{
|
|
get
|
|
{
|
|
return swap_interval;
|
|
}
|
|
set
|
|
{
|
|
swap_interval = value;
|
|
}
|
|
}
|
|
|
|
public override void Update(IWindowInfo window)
|
|
{ }
|
|
|
|
public override void LoadAll()
|
|
{
|
|
new OpenTK.Graphics.OpenGL.GL().LoadEntryPoints();
|
|
new OpenTK.Graphics.OpenGL4.GL().LoadEntryPoints();
|
|
new OpenTK.Graphics.ES11.GL().LoadEntryPoints();
|
|
new OpenTK.Graphics.ES20.GL().LoadEntryPoints();
|
|
new OpenTK.Graphics.ES30.GL().LoadEntryPoints();
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region --- IDisposable Members ---
|
|
|
|
public override void Dispose() { IsDisposed = true; }
|
|
|
|
#endregion
|
|
}
|
|
}
|