2007-09-09 16:07:39 +00:00
|
|
|
|
#region --- License ---
|
|
|
|
|
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
|
|
|
|
|
* See license.txt for license info
|
|
|
|
|
*/
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
using System;
|
2007-09-02 08:09:01 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace OpenTK.Platform
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2008-01-31 13:17:42 +00:00
|
|
|
|
/// An empty IGraphicsContext implementation to be used inside the Visual Studio designer.
|
2007-12-09 18:15:51 +00:00
|
|
|
|
/// This class supports OpenTK, and is not intended for use by OpenTK programs.
|
2007-09-02 08:09:01 +00:00
|
|
|
|
/// </summary>
|
2008-01-31 13:17:42 +00:00
|
|
|
|
internal sealed class DummyGLContext : IGraphicsContext
|
2007-09-02 08:09:01 +00:00
|
|
|
|
{
|
2007-09-09 15:10:21 +00:00
|
|
|
|
WindowInfo info = new WindowInfo();
|
2007-10-15 11:16:20 +00:00
|
|
|
|
DisplayMode mode;
|
|
|
|
|
bool vsync;
|
|
|
|
|
|
|
|
|
|
#region --- Constructors ---
|
|
|
|
|
|
|
|
|
|
public DummyGLContext(DisplayMode m) { mode = m; }
|
|
|
|
|
|
|
|
|
|
#endregion
|
2007-09-09 15:10:21 +00:00
|
|
|
|
|
2008-01-31 13:17:42 +00:00
|
|
|
|
#region --- IGraphicsContext Members ---
|
2007-09-02 08:09:01 +00:00
|
|
|
|
|
2007-09-09 15:10:21 +00:00
|
|
|
|
public IntPtr Context { get { return IntPtr.Zero; } }
|
|
|
|
|
public IWindowInfo Info { get { return info; } }
|
|
|
|
|
public DisplayMode Mode { get { return mode; } }
|
2007-09-02 08:09:01 +00:00
|
|
|
|
|
2007-09-09 15:10:21 +00:00
|
|
|
|
public void CreateContext() { }
|
|
|
|
|
public void CreateContext(bool direct) { }
|
2008-01-31 13:17:42 +00:00
|
|
|
|
public void CreateContext(bool direct, IGraphicsContext source) { }
|
2007-09-02 08:09:01 +00:00
|
|
|
|
|
2007-09-09 15:10:21 +00:00
|
|
|
|
public void SwapBuffers() { }
|
|
|
|
|
public void MakeCurrent() { }
|
2008-01-31 13:15:17 +00:00
|
|
|
|
public bool IsCurrent { get { return true; } set { } }
|
2007-12-09 18:15:51 +00:00
|
|
|
|
public IntPtr GetCurrentContext() { return IntPtr.Zero; }
|
|
|
|
|
|
2008-01-31 13:17:42 +00:00
|
|
|
|
public event DestroyEvent<IGraphicsContext> Destroy;
|
2008-01-20 19:29:42 +00:00
|
|
|
|
void OnDestroy() { if (Destroy != null) Destroy(this, EventArgs.Empty); }
|
2007-12-09 18:15:51 +00:00
|
|
|
|
|
|
|
|
|
public void RegisterForDisposal(IDisposable resource)
|
|
|
|
|
{
|
2008-01-31 14:39:54 +00:00
|
|
|
|
throw new NotImplementedException("Use the general GraphicsContext class instead.");
|
2007-12-09 18:15:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void DisposeResources()
|
|
|
|
|
{
|
2008-01-31 14:39:54 +00:00
|
|
|
|
throw new NotImplementedException("Use the general GraphicsContext class instead.");
|
2007-12-09 18:15:51 +00:00
|
|
|
|
}
|
2007-09-02 08:09:01 +00:00
|
|
|
|
|
2007-09-09 15:10:21 +00:00
|
|
|
|
public IntPtr GetAddress(string function) { return IntPtr.Zero; }
|
|
|
|
|
public IEnumerable<DisplayMode> GetDisplayModes() { return null; }
|
2007-09-02 08:09:01 +00:00
|
|
|
|
|
2007-10-15 11:16:20 +00:00
|
|
|
|
public bool VSync { get { return vsync; } set { vsync = value; } }
|
2007-09-29 15:24:55 +00:00
|
|
|
|
|
2007-09-02 08:09:01 +00:00
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region --- IDisposable Members ---
|
|
|
|
|
|
2007-09-09 15:10:21 +00:00
|
|
|
|
public void Dispose() { }
|
2007-09-02 08:09:01 +00:00
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|