mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-25 17:31:05 +00:00
Disabled CL10, ES10 and ES11 bindings which were not finalized in time for OpenTK 1.0.
This commit is contained in:
parent
4ed96654ad
commit
6263153aa8
|
@ -5,6 +5,7 @@ using OpenTK.Compute.CL10;
|
||||||
|
|
||||||
namespace Examples
|
namespace Examples
|
||||||
{
|
{
|
||||||
|
#if EXPERIMENTAL
|
||||||
using cl_context = IntPtr;
|
using cl_context = IntPtr;
|
||||||
using cl_device_id = IntPtr;
|
using cl_device_id = IntPtr;
|
||||||
using cl_command_queue = IntPtr;
|
using cl_command_queue = IntPtr;
|
||||||
|
@ -137,4 +138,5 @@ vectorAdd(__global const float * a,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
|
@ -41,6 +41,7 @@ using OpenTK.Graphics.ES11;
|
||||||
|
|
||||||
namespace Examples.Tutorial
|
namespace Examples.Tutorial
|
||||||
{
|
{
|
||||||
|
#if EXPERIMENTAL
|
||||||
[Example("Immediate mode", ExampleCategory.OpenGLES, "1.1", Documentation = "SimpleES11Window")]
|
[Example("Immediate mode", ExampleCategory.OpenGLES, "1.1", Documentation = "SimpleES11Window")]
|
||||||
public class SimpleES11Window : GameWindow
|
public class SimpleES11Window : GameWindow
|
||||||
{
|
{
|
||||||
|
@ -204,4 +205,5 @@ namespace Examples.Tutorial
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,7 +35,10 @@ namespace OpenTK.Compute.CL10
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Provides access to the OpenCL 1.0 flat API.
|
/// Provides access to the OpenCL 1.0 flat API.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public partial class CL : BindingsBase
|
#if EXPERIMENTAL
|
||||||
|
public
|
||||||
|
#endif
|
||||||
|
sealed partial class CL : BindingsBase
|
||||||
{
|
{
|
||||||
#region Fields
|
#region Fields
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,10 @@ namespace OpenTK.Graphics.ES10
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Provides access to OpenGL ES 1.0 methods.
|
/// Provides access to OpenGL ES 1.0 methods.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public sealed partial class GL : GraphicsBindingsBase
|
#if EXPERIMENTAL
|
||||||
|
public
|
||||||
|
#endif
|
||||||
|
sealed partial class GL : GraphicsBindingsBase
|
||||||
{
|
{
|
||||||
const string Library = "libGLES.dll";
|
const string Library = "libGLES.dll";
|
||||||
static readonly object sync_root = new object();
|
static readonly object sync_root = new object();
|
||||||
|
|
|
@ -9,7 +9,10 @@ namespace OpenTK.Graphics.ES11
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Provides access to OpenGL ES 1.1 methods.
|
/// Provides access to OpenGL ES 1.1 methods.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public sealed partial class GL : GraphicsBindingsBase
|
#if EXPERIMENTAL
|
||||||
|
public
|
||||||
|
#endif
|
||||||
|
sealed partial class GL : GraphicsBindingsBase
|
||||||
{
|
{
|
||||||
const string Library = "libGLES.dll";
|
const string Library = "libGLES.dll";
|
||||||
static readonly object sync_root = new object();
|
static readonly object sync_root = new object();
|
||||||
|
|
Loading…
Reference in a new issue