Disabled CL10, ES10 and ES11 bindings which were not finalized in time for OpenTK 1.0.

This commit is contained in:
the_fiddler 2009-11-10 06:39:27 +00:00
parent 4ed96654ad
commit 6263153aa8
5 changed files with 16 additions and 3 deletions

View file

@ -5,6 +5,7 @@ using OpenTK.Compute.CL10;
namespace Examples
{
#if EXPERIMENTAL
using cl_context = IntPtr;
using cl_device_id = IntPtr;
using cl_command_queue = IntPtr;
@ -137,4 +138,5 @@ vectorAdd(__global const float * a,
}
}
}
#endif
}

View file

@ -41,6 +41,7 @@ using OpenTK.Graphics.ES11;
namespace Examples.Tutorial
{
#if EXPERIMENTAL
[Example("Immediate mode", ExampleCategory.OpenGLES, "1.1", Documentation = "SimpleES11Window")]
public class SimpleES11Window : GameWindow
{
@ -204,4 +205,5 @@ namespace Examples.Tutorial
#endregion
}
#endif
}

View file

@ -35,7 +35,10 @@ namespace OpenTK.Compute.CL10
/// <summary>
/// Provides access to the OpenCL 1.0 flat API.
/// </summary>
public partial class CL : BindingsBase
#if EXPERIMENTAL
public
#endif
sealed partial class CL : BindingsBase
{
#region Fields

View file

@ -7,7 +7,10 @@ namespace OpenTK.Graphics.ES10
/// <summary>
/// Provides access to OpenGL ES 1.0 methods.
/// </summary>
public sealed partial class GL : GraphicsBindingsBase
#if EXPERIMENTAL
public
#endif
sealed partial class GL : GraphicsBindingsBase
{
const string Library = "libGLES.dll";
static readonly object sync_root = new object();

View file

@ -9,7 +9,10 @@ namespace OpenTK.Graphics.ES11
/// <summary>
/// Provides access to OpenGL ES 1.1 methods.
/// </summary>
public sealed partial class GL : GraphicsBindingsBase
#if EXPERIMENTAL
public
#endif
sealed partial class GL : GraphicsBindingsBase
{
const string Library = "libGLES.dll";
static readonly object sync_root = new object();