Show / Hide Table of Contents

Class GL

Provides access to OpenGL ES 1.1 methods.

Inheritance
System.Object
BindingsBase
GraphicsBindingsBase
GL
Inherited Members
GraphicsBindingsBase.GetAddress(String)
BindingsBase.RebuildExtensionList
BindingsBase.MarshalPtrToString(IntPtr)
BindingsBase.MarshalStringToPtr(String)
BindingsBase.FreeStringPtr(IntPtr)
BindingsBase.MarshalStringArrayToPtr(String[])
BindingsBase.FreeStringArrayPtr(IntPtr, Int32)
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: OpenTK.Graphics.ES11
Assembly: cs.temp.dll.dll
Syntax
public sealed class GL : GraphicsBindingsBase

Constructors

GL()

Constructs a new instance.

Declaration
public GL()

Properties

SyncRoot

Returns a synchronization token unique for the GL class.

Declaration
protected override object SyncRoot { get; }
Property Value
Type Description
System.Object
Overrides
BindingsBase.SyncRoot

Methods

GetClipPlane(All)

[requires: v1.0] Return the coefficients of the specified clipping plane

Declaration
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanef")]
[CLSCompliant(false)]
[Obsolete("Use GetClipPlane(..., float[]) instead. This method will return incorrect results.")]
public static float GetClipPlane(All plane)
Parameters
Type Name Description
OpenTK.Graphics.ES11.All plane

Specifies a clipping plane. The number of clipping planes depends on the implementation, but at least six clipping planes are supported. They are identified by symbolic names of the form GL_CLIP_PLANE where i ranges from 0 to the value of GL_MAX_CLIP_PLANES - 1.

Returns
Type Description
System.Single

GetClipPlanex(All)

[requires: v1.0] Return the coefficients of the specified clipping plane

Declaration
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanex")]
[CLSCompliant(false)]
[Obsolete("Use GetClipPlane(..., int[]) instead. This method will return incorrect results.")]
public static int GetClipPlanex(All plane)
Parameters
Type Name Description
OpenTK.Graphics.ES11.All plane

Specifies a clipping plane. The number of clipping planes depends on the implementation, but at least six clipping planes are supported. They are identified by symbolic names of the form GL_CLIP_PLANE where i ranges from 0 to the value of GL_MAX_CLIP_PLANES - 1.

Returns
Type Description
System.Int32
Back to top Copyright © 2015-2017 Microsoft
Generated by DocFX