mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-03-26 13:05:03 +00:00
[Graphics] Synced with Khronos repository
Adds: - INTEL_performance_query extension - “count” attribute fixes for multiple functions
This commit is contained in:
parent
d7614f5718
commit
b3fac68b37
|
@ -23,8 +23,6 @@
|
|||
// OTHER DEALINGS IN THE SOFTWARE.
|
||||
//
|
||||
|
||||
|
||||
|
||||
namespace OpenTK.Graphics.ES11
|
||||
{
|
||||
using System;
|
||||
|
@ -4368,23 +4366,6 @@ namespace OpenTK.Graphics.ES11
|
|||
[CLSCompliant(false)]
|
||||
public static unsafe void GetBufferParameter(OpenTK.Graphics.ES11.All target, OpenTK.Graphics.ES11.All pname, [OutAttribute] Int32* @params) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: v1.0]
|
||||
/// Return the coefficients of the specified clipping plane
|
||||
/// </summary>
|
||||
/// <param name="plane">
|
||||
/// <para>
|
||||
/// 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.
|
||||
/// </para>
|
||||
/// </param>
|
||||
/// <param name="equation">
|
||||
/// <para>
|
||||
/// Returns four double-precision values that are the coefficients of the plane equation of plane in eye coordinates. The initial value is (0, 0, 0, 0).
|
||||
/// </para>
|
||||
/// </param>
|
||||
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanef")]
|
||||
[CLSCompliant(false)]
|
||||
public static Single GetClipPlane(OpenTK.Graphics.ES11.All plane) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: v1.0]
|
||||
/// Return the coefficients of the specified clipping plane
|
||||
/// </summary>
|
||||
|
@ -4436,11 +4417,6 @@ namespace OpenTK.Graphics.ES11
|
|||
[CLSCompliant(false)]
|
||||
public static unsafe void GetClipPlane(OpenTK.Graphics.ES11.All plane, [OutAttribute] Single* equation) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: v1.0]</summary>
|
||||
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanex")]
|
||||
[CLSCompliant(false)]
|
||||
public static int GetClipPlanex(OpenTK.Graphics.ES11.All plane) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: v1.0]</summary>
|
||||
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glGetClipPlanex")]
|
||||
[CLSCompliant(false)]
|
||||
|
@ -15493,6 +15469,7 @@ namespace OpenTK.Graphics.ES11
|
|||
{ throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: QCOM_extended_get]</summary>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ExtGetBuffers([OutAttribute] Int32[] buffers, Int32 maxBuffers, [OutAttribute] Int32[] numBuffers) { throw new NotImplementedException(); }
|
||||
|
@ -15500,14 +15477,22 @@ namespace OpenTK.Graphics.ES11
|
|||
/// <summary>[requires: QCOM_extended_get]</summary>
|
||||
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ExtGetBuffers([OutAttribute] Int32[] buffers, Int32 maxBuffers, [OutAttribute] out Int32 numBuffers) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: QCOM_extended_get]</summary>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ExtGetBuffers([OutAttribute] out Int32 buffers, Int32 maxBuffers, [OutAttribute] out Int32 numBuffers) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: QCOM_extended_get]</summary>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static unsafe void ExtGetBuffers([OutAttribute] Int32* buffers, Int32 maxBuffers, [OutAttribute] Int32* numBuffers) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: QCOM_extended_get]</summary>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ExtGetBuffers([OutAttribute] UInt32[] buffers, Int32 maxBuffers, [OutAttribute] Int32[] numBuffers) { throw new NotImplementedException(); }
|
||||
|
@ -15515,14 +15500,22 @@ namespace OpenTK.Graphics.ES11
|
|||
/// <summary>[requires: QCOM_extended_get]</summary>
|
||||
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ExtGetBuffers([OutAttribute] UInt32[] buffers, Int32 maxBuffers, [OutAttribute] out Int32 numBuffers) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: QCOM_extended_get]</summary>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ExtGetBuffers([OutAttribute] out UInt32 buffers, Int32 maxBuffers, [OutAttribute] out Int32 numBuffers) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: QCOM_extended_get]</summary>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetBuffersQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static unsafe void ExtGetBuffers([OutAttribute] UInt32* buffers, Int32 maxBuffers, [OutAttribute] Int32* numBuffers) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: QCOM_extended_get]</summary>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ExtGetFramebuffers([OutAttribute] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute] Int32[] numFramebuffers) { throw new NotImplementedException(); }
|
||||
|
@ -15530,14 +15523,22 @@ namespace OpenTK.Graphics.ES11
|
|||
/// <summary>[requires: QCOM_extended_get]</summary>
|
||||
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ExtGetFramebuffers([OutAttribute] Int32[] framebuffers, Int32 maxFramebuffers, [OutAttribute] out Int32 numFramebuffers) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: QCOM_extended_get]</summary>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ExtGetFramebuffers([OutAttribute] out Int32 framebuffers, Int32 maxFramebuffers, [OutAttribute] out Int32 numFramebuffers) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: QCOM_extended_get]</summary>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static unsafe void ExtGetFramebuffers([OutAttribute] Int32* framebuffers, Int32 maxFramebuffers, [OutAttribute] Int32* numFramebuffers) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: QCOM_extended_get]</summary>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ExtGetFramebuffers([OutAttribute] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute] Int32[] numFramebuffers) { throw new NotImplementedException(); }
|
||||
|
@ -15545,9 +15546,16 @@ namespace OpenTK.Graphics.ES11
|
|||
/// <summary>[requires: QCOM_extended_get]</summary>
|
||||
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ExtGetFramebuffers([OutAttribute] UInt32[] framebuffers, Int32 maxFramebuffers, [OutAttribute] out Int32 numFramebuffers) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: QCOM_extended_get]</summary>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ExtGetFramebuffers([OutAttribute] out UInt32 framebuffers, Int32 maxFramebuffers, [OutAttribute] out Int32 numFramebuffers) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: QCOM_extended_get]</summary>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetFramebuffersQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static unsafe void ExtGetFramebuffers([OutAttribute] UInt32* framebuffers, Int32 maxFramebuffers, [OutAttribute] Int32* numFramebuffers) { throw new NotImplementedException(); }
|
||||
|
@ -15583,6 +15591,7 @@ namespace OpenTK.Graphics.ES11
|
|||
public static unsafe void ExtGetProgramBinarySource(UInt32 program, OpenTK.Graphics.ES11.All shadertype, [OutAttribute] StringBuilder source, [OutAttribute] Int32* length) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: QCOM_extended_get2]</summary>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ExtGetProgram([OutAttribute] Int32[] programs, Int32 maxPrograms, [OutAttribute] Int32[] numPrograms) { throw new NotImplementedException(); }
|
||||
|
@ -15590,14 +15599,22 @@ namespace OpenTK.Graphics.ES11
|
|||
/// <summary>[requires: QCOM_extended_get2]</summary>
|
||||
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ExtGetProgram([OutAttribute] Int32[] programs, Int32 maxPrograms, [OutAttribute] out Int32 numPrograms) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: QCOM_extended_get2]</summary>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ExtGetProgram([OutAttribute] out Int32 programs, Int32 maxPrograms, [OutAttribute] out Int32 numPrograms) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: QCOM_extended_get2]</summary>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static unsafe void ExtGetProgram([OutAttribute] Int32* programs, Int32 maxPrograms, [OutAttribute] Int32* numPrograms) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: QCOM_extended_get2]</summary>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ExtGetProgram([OutAttribute] UInt32[] programs, Int32 maxPrograms, [OutAttribute] Int32[] numPrograms) { throw new NotImplementedException(); }
|
||||
|
@ -15605,14 +15622,22 @@ namespace OpenTK.Graphics.ES11
|
|||
/// <summary>[requires: QCOM_extended_get2]</summary>
|
||||
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ExtGetProgram([OutAttribute] UInt32[] programs, Int32 maxPrograms, [OutAttribute] out Int32 numPrograms) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: QCOM_extended_get2]</summary>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ExtGetProgram([OutAttribute] out UInt32 programs, Int32 maxPrograms, [OutAttribute] out Int32 numPrograms) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: QCOM_extended_get2]</summary>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetProgramsQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static unsafe void ExtGetProgram([OutAttribute] UInt32* programs, Int32 maxPrograms, [OutAttribute] Int32* numPrograms) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: QCOM_extended_get]</summary>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ExtGetRenderbuffers([OutAttribute] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute] Int32[] numRenderbuffers) { throw new NotImplementedException(); }
|
||||
|
@ -15620,14 +15645,22 @@ namespace OpenTK.Graphics.ES11
|
|||
/// <summary>[requires: QCOM_extended_get]</summary>
|
||||
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ExtGetRenderbuffers([OutAttribute] Int32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute] out Int32 numRenderbuffers) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: QCOM_extended_get]</summary>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ExtGetRenderbuffers([OutAttribute] out Int32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute] out Int32 numRenderbuffers) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: QCOM_extended_get]</summary>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static unsafe void ExtGetRenderbuffers([OutAttribute] Int32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute] Int32* numRenderbuffers) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: QCOM_extended_get]</summary>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ExtGetRenderbuffers([OutAttribute] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute] Int32[] numRenderbuffers) { throw new NotImplementedException(); }
|
||||
|
@ -15635,14 +15668,22 @@ namespace OpenTK.Graphics.ES11
|
|||
/// <summary>[requires: QCOM_extended_get]</summary>
|
||||
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ExtGetRenderbuffers([OutAttribute] UInt32[] renderbuffers, Int32 maxRenderbuffers, [OutAttribute] out Int32 numRenderbuffers) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: QCOM_extended_get]</summary>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ExtGetRenderbuffers([OutAttribute] out UInt32 renderbuffers, Int32 maxRenderbuffers, [OutAttribute] out Int32 numRenderbuffers) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: QCOM_extended_get]</summary>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "QCOM_extended_get", Version = "", EntryPoint = "glExtGetRenderbuffersQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static unsafe void ExtGetRenderbuffers([OutAttribute] UInt32* renderbuffers, Int32 maxRenderbuffers, [OutAttribute] Int32* numRenderbuffers) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: QCOM_extended_get2]</summary>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ExtGetShaders([OutAttribute] Int32[] shaders, Int32 maxShaders, [OutAttribute] Int32[] numShaders) { throw new NotImplementedException(); }
|
||||
|
@ -15650,14 +15691,22 @@ namespace OpenTK.Graphics.ES11
|
|||
/// <summary>[requires: QCOM_extended_get2]</summary>
|
||||
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ExtGetShaders([OutAttribute] Int32[] shaders, Int32 maxShaders, [OutAttribute] out Int32 numShaders) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: QCOM_extended_get2]</summary>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ExtGetShaders([OutAttribute] out Int32 shaders, Int32 maxShaders, [OutAttribute] out Int32 numShaders) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: QCOM_extended_get2]</summary>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static unsafe void ExtGetShaders([OutAttribute] Int32* shaders, Int32 maxShaders, [OutAttribute] Int32* numShaders) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: QCOM_extended_get2]</summary>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ExtGetShaders([OutAttribute] UInt32[] shaders, Int32 maxShaders, [OutAttribute] Int32[] numShaders) { throw new NotImplementedException(); }
|
||||
|
@ -15665,9 +15714,16 @@ namespace OpenTK.Graphics.ES11
|
|||
/// <summary>[requires: QCOM_extended_get2]</summary>
|
||||
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ExtGetShaders([OutAttribute] UInt32[] shaders, Int32 maxShaders, [OutAttribute] out Int32 numShaders) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: QCOM_extended_get2]</summary>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ExtGetShaders([OutAttribute] out UInt32 shaders, Int32 maxShaders, [OutAttribute] out Int32 numShaders) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: QCOM_extended_get2]</summary>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "QCOM_extended_get2", Version = "", EntryPoint = "glExtGetShadersQCOM")]
|
||||
[CLSCompliant(false)]
|
||||
public static unsafe void ExtGetShaders([OutAttribute] UInt32* shaders, Int32 maxShaders, [OutAttribute] Int32* numShaders) { throw new NotImplementedException(); }
|
||||
|
|
|
@ -23,8 +23,6 @@
|
|||
// OTHER DEALINGS IN THE SOFTWARE.
|
||||
//
|
||||
|
||||
|
||||
|
||||
using System;
|
||||
|
||||
namespace OpenTK.Graphics.ES11
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -23,8 +23,6 @@
|
|||
// OTHER DEALINGS IN THE SOFTWARE.
|
||||
//
|
||||
|
||||
|
||||
|
||||
using System;
|
||||
|
||||
namespace OpenTK.Graphics.ES20
|
||||
|
@ -200,6 +198,10 @@ namespace OpenTK.Graphics.ES20
|
|||
/// </summary>
|
||||
Points = ((int)0X0000) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_SINGLE_CONTEXT_INTEL = 0x00000000
|
||||
/// </summary>
|
||||
PerfquerySingleContextIntel = ((int)0x00000000) ,
|
||||
/// <summary>
|
||||
/// Original was GL_CLIENT_PIXEL_STORE_BIT = 0x00000001
|
||||
/// </summary>
|
||||
ClientPixelStoreBit = ((int)0x00000001) ,
|
||||
|
@ -220,6 +222,10 @@ namespace OpenTK.Graphics.ES20
|
|||
/// </summary>
|
||||
CurrentBit = ((int)0x00000001) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_GLOBAL_CONTEXT_INTEL = 0x00000001
|
||||
/// </summary>
|
||||
PerfqueryGlobalContextIntel = ((int)0x00000001) ,
|
||||
/// <summary>
|
||||
/// Original was GL_QUERY_DEPTH_PASS_EVENT_BIT_AMD = 0x00000001
|
||||
/// </summary>
|
||||
QueryDepthPassEventBitAmd = ((int)0x00000001) ,
|
||||
|
@ -5016,6 +5022,18 @@ namespace OpenTK.Graphics.ES20
|
|||
/// </summary>
|
||||
CompressedRgbaS3tcDxt5Ext = ((int)0x83F3) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_DONOT_FLUSH_INTEL = 0x83F9
|
||||
/// </summary>
|
||||
PerfqueryDonotFlushIntel = ((int)0x83F9) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_FLUSH_INTEL = 0x83FA
|
||||
/// </summary>
|
||||
PerfqueryFlushIntel = ((int)0x83FA) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_WAIT_INTEL = 0x83FB
|
||||
/// </summary>
|
||||
PerfqueryWaitIntel = ((int)0x83FB) ,
|
||||
/// <summary>
|
||||
/// Original was GL_FRAGMENT_LIGHTING_SGIX = 0x8400
|
||||
/// </summary>
|
||||
FragmentLightingSgix = ((int)0x8400) ,
|
||||
|
@ -7352,6 +7370,66 @@ namespace OpenTK.Graphics.ES20
|
|||
/// </summary>
|
||||
CompressedSrgb8Alpha8Astc6X6x6Oes = ((int)0x93E9) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_EVENT_INTEL = 0x94F0
|
||||
/// </summary>
|
||||
PerfqueryCounterEventIntel = ((int)0x94F0) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DURATION_NORM_INTEL = 0x94F1
|
||||
/// </summary>
|
||||
PerfqueryCounterDurationNormIntel = ((int)0x94F1) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DURATION_RAW_INTEL = 0x94F2
|
||||
/// </summary>
|
||||
PerfqueryCounterDurationRawIntel = ((int)0x94F2) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_THROUGHPUT_INTEL = 0x94F3
|
||||
/// </summary>
|
||||
PerfqueryCounterThroughputIntel = ((int)0x94F3) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_RAW_INTEL = 0x94F4
|
||||
/// </summary>
|
||||
PerfqueryCounterRawIntel = ((int)0x94F4) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_TIMESTAMP_INTEL = 0x94F5
|
||||
/// </summary>
|
||||
PerfqueryCounterTimestampIntel = ((int)0x94F5) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DATA_UINT32_INTEL = 0x94F8
|
||||
/// </summary>
|
||||
PerfqueryCounterDataUint32Intel = ((int)0x94F8) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DATA_UINT64_INTEL = 0x94F9
|
||||
/// </summary>
|
||||
PerfqueryCounterDataUint64Intel = ((int)0x94F9) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DATA_FLOAT_INTEL = 0x94FA
|
||||
/// </summary>
|
||||
PerfqueryCounterDataFloatIntel = ((int)0x94FA) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DATA_DOUBLE_INTEL = 0x94FB
|
||||
/// </summary>
|
||||
PerfqueryCounterDataDoubleIntel = ((int)0x94FB) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DATA_BOOL32_INTEL = 0x94FC
|
||||
/// </summary>
|
||||
PerfqueryCounterDataBool32Intel = ((int)0x94FC) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_QUERY_NAME_LENGTH_MAX_INTEL = 0x94FD
|
||||
/// </summary>
|
||||
PerfqueryQueryNameLengthMaxIntel = ((int)0x94FD) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_NAME_LENGTH_MAX_INTEL = 0x94FE
|
||||
/// </summary>
|
||||
PerfqueryCounterNameLengthMaxIntel = ((int)0x94FE) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DESC_LENGTH_MAX_INTEL = 0x94FF
|
||||
/// </summary>
|
||||
PerfqueryCounterDescLengthMaxIntel = ((int)0x94FF) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_GPA_EXTENDED_COUNTERS_INTEL = 0x9500
|
||||
/// </summary>
|
||||
PerfqueryGpaExtendedCountersIntel = ((int)0x9500) ,
|
||||
/// <summary>
|
||||
/// Original was GL_ALL_ATTRIB_BITS = 0xFFFFFFFF
|
||||
/// </summary>
|
||||
AllAttribBits = unchecked((int)0xFFFFFFFF) ,
|
||||
|
@ -14790,6 +14868,93 @@ namespace OpenTK.Graphics.ES20
|
|||
Double = ((int)0x140A) ,
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Not used directly.
|
||||
/// </summary>
|
||||
public enum IntelPerformanceQuery : int
|
||||
{
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_SINGLE_CONTEXT_INTEL = 0x00000000
|
||||
/// </summary>
|
||||
PerfquerySingleContextIntel = ((int)0x00000000) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_GLOBAL_CONTEXT_INTEL = 0x00000001
|
||||
/// </summary>
|
||||
PerfqueryGlobalContextIntel = ((int)0x00000001) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_DONOT_FLUSH_INTEL = 0x83F9
|
||||
/// </summary>
|
||||
PerfqueryDonotFlushIntel = ((int)0x83F9) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_FLUSH_INTEL = 0x83FA
|
||||
/// </summary>
|
||||
PerfqueryFlushIntel = ((int)0x83FA) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_WAIT_INTEL = 0x83FB
|
||||
/// </summary>
|
||||
PerfqueryWaitIntel = ((int)0x83FB) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_EVENT_INTEL = 0x94F0
|
||||
/// </summary>
|
||||
PerfqueryCounterEventIntel = ((int)0x94F0) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DURATION_NORM_INTEL = 0x94F1
|
||||
/// </summary>
|
||||
PerfqueryCounterDurationNormIntel = ((int)0x94F1) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DURATION_RAW_INTEL = 0x94F2
|
||||
/// </summary>
|
||||
PerfqueryCounterDurationRawIntel = ((int)0x94F2) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_THROUGHPUT_INTEL = 0x94F3
|
||||
/// </summary>
|
||||
PerfqueryCounterThroughputIntel = ((int)0x94F3) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_RAW_INTEL = 0x94F4
|
||||
/// </summary>
|
||||
PerfqueryCounterRawIntel = ((int)0x94F4) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_TIMESTAMP_INTEL = 0x94F5
|
||||
/// </summary>
|
||||
PerfqueryCounterTimestampIntel = ((int)0x94F5) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DATA_UINT32_INTEL = 0x94F8
|
||||
/// </summary>
|
||||
PerfqueryCounterDataUint32Intel = ((int)0x94F8) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DATA_UINT64_INTEL = 0x94F9
|
||||
/// </summary>
|
||||
PerfqueryCounterDataUint64Intel = ((int)0x94F9) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DATA_FLOAT_INTEL = 0x94FA
|
||||
/// </summary>
|
||||
PerfqueryCounterDataFloatIntel = ((int)0x94FA) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DATA_DOUBLE_INTEL = 0x94FB
|
||||
/// </summary>
|
||||
PerfqueryCounterDataDoubleIntel = ((int)0x94FB) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DATA_BOOL32_INTEL = 0x94FC
|
||||
/// </summary>
|
||||
PerfqueryCounterDataBool32Intel = ((int)0x94FC) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_QUERY_NAME_LENGTH_MAX_INTEL = 0x94FD
|
||||
/// </summary>
|
||||
PerfqueryQueryNameLengthMaxIntel = ((int)0x94FD) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_NAME_LENGTH_MAX_INTEL = 0x94FE
|
||||
/// </summary>
|
||||
PerfqueryCounterNameLengthMaxIntel = ((int)0x94FE) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DESC_LENGTH_MAX_INTEL = 0x94FF
|
||||
/// </summary>
|
||||
PerfqueryCounterDescLengthMaxIntel = ((int)0x94FF) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_GPA_EXTENDED_COUNTERS_INTEL = 0x9500
|
||||
/// </summary>
|
||||
PerfqueryGpaExtendedCountersIntel = ((int)0x9500) ,
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Not used directly.
|
||||
/// </summary>
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -23,8 +23,6 @@
|
|||
// OTHER DEALINGS IN THE SOFTWARE.
|
||||
//
|
||||
|
||||
|
||||
|
||||
using System;
|
||||
|
||||
namespace OpenTK.Graphics.ES30
|
||||
|
@ -418,6 +416,10 @@ namespace OpenTK.Graphics.ES30
|
|||
/// </summary>
|
||||
Points = ((int)0X0000) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_SINGLE_CONTEXT_INTEL = 0x00000000
|
||||
/// </summary>
|
||||
PerfquerySingleContextIntel = ((int)0x00000000) ,
|
||||
/// <summary>
|
||||
/// Original was GL_CLIENT_PIXEL_STORE_BIT = 0x00000001
|
||||
/// </summary>
|
||||
ClientPixelStoreBit = ((int)0x00000001) ,
|
||||
|
@ -438,6 +440,10 @@ namespace OpenTK.Graphics.ES30
|
|||
/// </summary>
|
||||
CurrentBit = ((int)0x00000001) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_GLOBAL_CONTEXT_INTEL = 0x00000001
|
||||
/// </summary>
|
||||
PerfqueryGlobalContextIntel = ((int)0x00000001) ,
|
||||
/// <summary>
|
||||
/// Original was GL_QUERY_DEPTH_PASS_EVENT_BIT_AMD = 0x00000001
|
||||
/// </summary>
|
||||
QueryDepthPassEventBitAmd = ((int)0x00000001) ,
|
||||
|
@ -5410,6 +5416,18 @@ namespace OpenTK.Graphics.ES30
|
|||
/// </summary>
|
||||
CompressedRgbaS3tcDxt5Ext = ((int)0x83F3) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_DONOT_FLUSH_INTEL = 0x83F9
|
||||
/// </summary>
|
||||
PerfqueryDonotFlushIntel = ((int)0x83F9) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_FLUSH_INTEL = 0x83FA
|
||||
/// </summary>
|
||||
PerfqueryFlushIntel = ((int)0x83FA) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_WAIT_INTEL = 0x83FB
|
||||
/// </summary>
|
||||
PerfqueryWaitIntel = ((int)0x83FB) ,
|
||||
/// <summary>
|
||||
/// Original was GL_FRAGMENT_LIGHTING_SGIX = 0x8400
|
||||
/// </summary>
|
||||
FragmentLightingSgix = ((int)0x8400) ,
|
||||
|
@ -8646,6 +8664,66 @@ namespace OpenTK.Graphics.ES30
|
|||
/// </summary>
|
||||
CompressedSrgb8Alpha8Astc6X6x6Oes = ((int)0x93E9) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_EVENT_INTEL = 0x94F0
|
||||
/// </summary>
|
||||
PerfqueryCounterEventIntel = ((int)0x94F0) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DURATION_NORM_INTEL = 0x94F1
|
||||
/// </summary>
|
||||
PerfqueryCounterDurationNormIntel = ((int)0x94F1) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DURATION_RAW_INTEL = 0x94F2
|
||||
/// </summary>
|
||||
PerfqueryCounterDurationRawIntel = ((int)0x94F2) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_THROUGHPUT_INTEL = 0x94F3
|
||||
/// </summary>
|
||||
PerfqueryCounterThroughputIntel = ((int)0x94F3) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_RAW_INTEL = 0x94F4
|
||||
/// </summary>
|
||||
PerfqueryCounterRawIntel = ((int)0x94F4) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_TIMESTAMP_INTEL = 0x94F5
|
||||
/// </summary>
|
||||
PerfqueryCounterTimestampIntel = ((int)0x94F5) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DATA_UINT32_INTEL = 0x94F8
|
||||
/// </summary>
|
||||
PerfqueryCounterDataUint32Intel = ((int)0x94F8) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DATA_UINT64_INTEL = 0x94F9
|
||||
/// </summary>
|
||||
PerfqueryCounterDataUint64Intel = ((int)0x94F9) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DATA_FLOAT_INTEL = 0x94FA
|
||||
/// </summary>
|
||||
PerfqueryCounterDataFloatIntel = ((int)0x94FA) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DATA_DOUBLE_INTEL = 0x94FB
|
||||
/// </summary>
|
||||
PerfqueryCounterDataDoubleIntel = ((int)0x94FB) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DATA_BOOL32_INTEL = 0x94FC
|
||||
/// </summary>
|
||||
PerfqueryCounterDataBool32Intel = ((int)0x94FC) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_QUERY_NAME_LENGTH_MAX_INTEL = 0x94FD
|
||||
/// </summary>
|
||||
PerfqueryQueryNameLengthMaxIntel = ((int)0x94FD) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_NAME_LENGTH_MAX_INTEL = 0x94FE
|
||||
/// </summary>
|
||||
PerfqueryCounterNameLengthMaxIntel = ((int)0x94FE) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DESC_LENGTH_MAX_INTEL = 0x94FF
|
||||
/// </summary>
|
||||
PerfqueryCounterDescLengthMaxIntel = ((int)0x94FF) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_GPA_EXTENDED_COUNTERS_INTEL = 0x9500
|
||||
/// </summary>
|
||||
PerfqueryGpaExtendedCountersIntel = ((int)0x9500) ,
|
||||
/// <summary>
|
||||
/// Original was GL_ALL_ATTRIB_BITS = 0xFFFFFFFF
|
||||
/// </summary>
|
||||
AllAttribBits = unchecked((int)0xFFFFFFFF) ,
|
||||
|
@ -18166,6 +18244,93 @@ namespace OpenTK.Graphics.ES30
|
|||
Double = ((int)0x140A) ,
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Not used directly.
|
||||
/// </summary>
|
||||
public enum IntelPerformanceQuery : int
|
||||
{
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_SINGLE_CONTEXT_INTEL = 0x00000000
|
||||
/// </summary>
|
||||
PerfquerySingleContextIntel = ((int)0x00000000) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_GLOBAL_CONTEXT_INTEL = 0x00000001
|
||||
/// </summary>
|
||||
PerfqueryGlobalContextIntel = ((int)0x00000001) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_DONOT_FLUSH_INTEL = 0x83F9
|
||||
/// </summary>
|
||||
PerfqueryDonotFlushIntel = ((int)0x83F9) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_FLUSH_INTEL = 0x83FA
|
||||
/// </summary>
|
||||
PerfqueryFlushIntel = ((int)0x83FA) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_WAIT_INTEL = 0x83FB
|
||||
/// </summary>
|
||||
PerfqueryWaitIntel = ((int)0x83FB) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_EVENT_INTEL = 0x94F0
|
||||
/// </summary>
|
||||
PerfqueryCounterEventIntel = ((int)0x94F0) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DURATION_NORM_INTEL = 0x94F1
|
||||
/// </summary>
|
||||
PerfqueryCounterDurationNormIntel = ((int)0x94F1) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DURATION_RAW_INTEL = 0x94F2
|
||||
/// </summary>
|
||||
PerfqueryCounterDurationRawIntel = ((int)0x94F2) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_THROUGHPUT_INTEL = 0x94F3
|
||||
/// </summary>
|
||||
PerfqueryCounterThroughputIntel = ((int)0x94F3) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_RAW_INTEL = 0x94F4
|
||||
/// </summary>
|
||||
PerfqueryCounterRawIntel = ((int)0x94F4) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_TIMESTAMP_INTEL = 0x94F5
|
||||
/// </summary>
|
||||
PerfqueryCounterTimestampIntel = ((int)0x94F5) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DATA_UINT32_INTEL = 0x94F8
|
||||
/// </summary>
|
||||
PerfqueryCounterDataUint32Intel = ((int)0x94F8) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DATA_UINT64_INTEL = 0x94F9
|
||||
/// </summary>
|
||||
PerfqueryCounterDataUint64Intel = ((int)0x94F9) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DATA_FLOAT_INTEL = 0x94FA
|
||||
/// </summary>
|
||||
PerfqueryCounterDataFloatIntel = ((int)0x94FA) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DATA_DOUBLE_INTEL = 0x94FB
|
||||
/// </summary>
|
||||
PerfqueryCounterDataDoubleIntel = ((int)0x94FB) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DATA_BOOL32_INTEL = 0x94FC
|
||||
/// </summary>
|
||||
PerfqueryCounterDataBool32Intel = ((int)0x94FC) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_QUERY_NAME_LENGTH_MAX_INTEL = 0x94FD
|
||||
/// </summary>
|
||||
PerfqueryQueryNameLengthMaxIntel = ((int)0x94FD) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_NAME_LENGTH_MAX_INTEL = 0x94FE
|
||||
/// </summary>
|
||||
PerfqueryCounterNameLengthMaxIntel = ((int)0x94FE) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DESC_LENGTH_MAX_INTEL = 0x94FF
|
||||
/// </summary>
|
||||
PerfqueryCounterDescLengthMaxIntel = ((int)0x94FF) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_GPA_EXTENDED_COUNTERS_INTEL = 0x9500
|
||||
/// </summary>
|
||||
PerfqueryGpaExtendedCountersIntel = ((int)0x9500) ,
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Not used directly.
|
||||
/// </summary>
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -23,8 +23,6 @@
|
|||
// OTHER DEALINGS IN THE SOFTWARE.
|
||||
//
|
||||
|
||||
|
||||
|
||||
using System;
|
||||
|
||||
namespace OpenTK.Graphics.OpenGL
|
||||
|
@ -777,6 +775,10 @@ namespace OpenTK.Graphics.OpenGL
|
|||
/// </summary>
|
||||
Points = ((int)0x0000) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_SINGLE_CONTEXT_INTEL = 0x00000000
|
||||
/// </summary>
|
||||
PerfquerySingleContextIntel = ((int)0x00000000) ,
|
||||
/// <summary>
|
||||
/// Original was GL_CLIENT_PIXEL_STORE_BIT = 0x00000001
|
||||
/// </summary>
|
||||
ClientPixelStoreBit = ((int)0x00000001) ,
|
||||
|
@ -797,6 +799,10 @@ namespace OpenTK.Graphics.OpenGL
|
|||
/// </summary>
|
||||
Gl2XBitAti = ((int)0x00000001) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_GLOBAL_CONTEXT_INTEL = 0x00000001
|
||||
/// </summary>
|
||||
PerfqueryGlobalContextIntel = ((int)0x00000001) ,
|
||||
/// <summary>
|
||||
/// Original was GL_QUERY_DEPTH_PASS_EVENT_BIT_AMD = 0x00000001
|
||||
/// </summary>
|
||||
QueryDepthPassEventBitAmd = ((int)0x00000001) ,
|
||||
|
@ -7461,6 +7467,18 @@ namespace OpenTK.Graphics.OpenGL
|
|||
/// </summary>
|
||||
TextureCoordArrayParallelPointersIntel = ((int)0x83F8) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_DONOT_FLUSH_INTEL = 0x83F9
|
||||
/// </summary>
|
||||
PerfqueryDonotFlushIntel = ((int)0x83F9) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_FLUSH_INTEL = 0x83FA
|
||||
/// </summary>
|
||||
PerfqueryFlushIntel = ((int)0x83FA) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_WAIT_INTEL = 0x83FB
|
||||
/// </summary>
|
||||
PerfqueryWaitIntel = ((int)0x83FB) ,
|
||||
/// <summary>
|
||||
/// Original was GL_TEXTURE_MEMORY_LAYOUT_INTEL = 0x83FF
|
||||
/// </summary>
|
||||
TextureMemoryLayoutIntel = ((int)0x83FF) ,
|
||||
|
@ -17337,6 +17355,26 @@ namespace OpenTK.Graphics.OpenGL
|
|||
/// </summary>
|
||||
TextureColorSamplesNv = ((int)0x9046) ,
|
||||
/// <summary>
|
||||
/// Original was GL_GPU_MEMORY_INFO_DEDICATED_VIDMEM_NVX = 0x9047
|
||||
/// </summary>
|
||||
GpuMemoryInfoDedicatedVidmemNvx = ((int)0x9047) ,
|
||||
/// <summary>
|
||||
/// Original was GL_GPU_MEMORY_INFO_TOTAL_AVAILABLE_MEMORY_NVX = 0x9048
|
||||
/// </summary>
|
||||
GpuMemoryInfoTotalAvailableMemoryNvx = ((int)0x9048) ,
|
||||
/// <summary>
|
||||
/// Original was GL_GPU_MEMORY_INFO_CURRENT_AVAILABLE_VIDMEM_NVX = 0x9049
|
||||
/// </summary>
|
||||
GpuMemoryInfoCurrentAvailableVidmemNvx = ((int)0x9049) ,
|
||||
/// <summary>
|
||||
/// Original was GL_GPU_MEMORY_INFO_EVICTION_COUNT_NVX = 0x904A
|
||||
/// </summary>
|
||||
GpuMemoryInfoEvictionCountNvx = ((int)0x904A) ,
|
||||
/// <summary>
|
||||
/// Original was GL_GPU_MEMORY_INFO_EVICTED_MEMORY_NVX = 0x904B
|
||||
/// </summary>
|
||||
GpuMemoryInfoEvictedMemoryNvx = ((int)0x904B) ,
|
||||
/// <summary>
|
||||
/// Original was GL_IMAGE_1D = 0x904C
|
||||
/// </summary>
|
||||
Image1D = ((int)0x904C) ,
|
||||
|
@ -19261,6 +19299,66 @@ namespace OpenTK.Graphics.OpenGL
|
|||
/// </summary>
|
||||
CompressedSrgb8Alpha8Astc12X12Khr = ((int)0x93DD) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_EVENT_INTEL = 0x94F0
|
||||
/// </summary>
|
||||
PerfqueryCounterEventIntel = ((int)0x94F0) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DURATION_NORM_INTEL = 0x94F1
|
||||
/// </summary>
|
||||
PerfqueryCounterDurationNormIntel = ((int)0x94F1) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DURATION_RAW_INTEL = 0x94F2
|
||||
/// </summary>
|
||||
PerfqueryCounterDurationRawIntel = ((int)0x94F2) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_THROUGHPUT_INTEL = 0x94F3
|
||||
/// </summary>
|
||||
PerfqueryCounterThroughputIntel = ((int)0x94F3) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_RAW_INTEL = 0x94F4
|
||||
/// </summary>
|
||||
PerfqueryCounterRawIntel = ((int)0x94F4) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_TIMESTAMP_INTEL = 0x94F5
|
||||
/// </summary>
|
||||
PerfqueryCounterTimestampIntel = ((int)0x94F5) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DATA_UINT32_INTEL = 0x94F8
|
||||
/// </summary>
|
||||
PerfqueryCounterDataUint32Intel = ((int)0x94F8) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DATA_UINT64_INTEL = 0x94F9
|
||||
/// </summary>
|
||||
PerfqueryCounterDataUint64Intel = ((int)0x94F9) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DATA_FLOAT_INTEL = 0x94FA
|
||||
/// </summary>
|
||||
PerfqueryCounterDataFloatIntel = ((int)0x94FA) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DATA_DOUBLE_INTEL = 0x94FB
|
||||
/// </summary>
|
||||
PerfqueryCounterDataDoubleIntel = ((int)0x94FB) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DATA_BOOL32_INTEL = 0x94FC
|
||||
/// </summary>
|
||||
PerfqueryCounterDataBool32Intel = ((int)0x94FC) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_QUERY_NAME_LENGTH_MAX_INTEL = 0x94FD
|
||||
/// </summary>
|
||||
PerfqueryQueryNameLengthMaxIntel = ((int)0x94FD) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_NAME_LENGTH_MAX_INTEL = 0x94FE
|
||||
/// </summary>
|
||||
PerfqueryCounterNameLengthMaxIntel = ((int)0x94FE) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DESC_LENGTH_MAX_INTEL = 0x94FF
|
||||
/// </summary>
|
||||
PerfqueryCounterDescLengthMaxIntel = ((int)0x94FF) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_GPA_EXTENDED_COUNTERS_INTEL = 0x9500
|
||||
/// </summary>
|
||||
PerfqueryGpaExtendedCountersIntel = ((int)0x9500) ,
|
||||
/// <summary>
|
||||
/// Original was GL_RESTART_PATH_NV = 0xF0
|
||||
/// </summary>
|
||||
RestartPathNv = ((int)0xF0) ,
|
||||
|
@ -39447,6 +39545,93 @@ namespace OpenTK.Graphics.OpenGL
|
|||
TextureCoordArrayParallelPointersIntel = ((int)0x83F8) ,
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Not used directly.
|
||||
/// </summary>
|
||||
public enum IntelPerformanceQuery : int
|
||||
{
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_SINGLE_CONTEXT_INTEL = 0x00000000
|
||||
/// </summary>
|
||||
PerfquerySingleContextIntel = ((int)0x00000000) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_GLOBAL_CONTEXT_INTEL = 0x00000001
|
||||
/// </summary>
|
||||
PerfqueryGlobalContextIntel = ((int)0x00000001) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_DONOT_FLUSH_INTEL = 0x83F9
|
||||
/// </summary>
|
||||
PerfqueryDonotFlushIntel = ((int)0x83F9) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_FLUSH_INTEL = 0x83FA
|
||||
/// </summary>
|
||||
PerfqueryFlushIntel = ((int)0x83FA) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_WAIT_INTEL = 0x83FB
|
||||
/// </summary>
|
||||
PerfqueryWaitIntel = ((int)0x83FB) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_EVENT_INTEL = 0x94F0
|
||||
/// </summary>
|
||||
PerfqueryCounterEventIntel = ((int)0x94F0) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DURATION_NORM_INTEL = 0x94F1
|
||||
/// </summary>
|
||||
PerfqueryCounterDurationNormIntel = ((int)0x94F1) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DURATION_RAW_INTEL = 0x94F2
|
||||
/// </summary>
|
||||
PerfqueryCounterDurationRawIntel = ((int)0x94F2) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_THROUGHPUT_INTEL = 0x94F3
|
||||
/// </summary>
|
||||
PerfqueryCounterThroughputIntel = ((int)0x94F3) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_RAW_INTEL = 0x94F4
|
||||
/// </summary>
|
||||
PerfqueryCounterRawIntel = ((int)0x94F4) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_TIMESTAMP_INTEL = 0x94F5
|
||||
/// </summary>
|
||||
PerfqueryCounterTimestampIntel = ((int)0x94F5) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DATA_UINT32_INTEL = 0x94F8
|
||||
/// </summary>
|
||||
PerfqueryCounterDataUint32Intel = ((int)0x94F8) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DATA_UINT64_INTEL = 0x94F9
|
||||
/// </summary>
|
||||
PerfqueryCounterDataUint64Intel = ((int)0x94F9) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DATA_FLOAT_INTEL = 0x94FA
|
||||
/// </summary>
|
||||
PerfqueryCounterDataFloatIntel = ((int)0x94FA) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DATA_DOUBLE_INTEL = 0x94FB
|
||||
/// </summary>
|
||||
PerfqueryCounterDataDoubleIntel = ((int)0x94FB) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DATA_BOOL32_INTEL = 0x94FC
|
||||
/// </summary>
|
||||
PerfqueryCounterDataBool32Intel = ((int)0x94FC) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_QUERY_NAME_LENGTH_MAX_INTEL = 0x94FD
|
||||
/// </summary>
|
||||
PerfqueryQueryNameLengthMaxIntel = ((int)0x94FD) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_NAME_LENGTH_MAX_INTEL = 0x94FE
|
||||
/// </summary>
|
||||
PerfqueryCounterNameLengthMaxIntel = ((int)0x94FE) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_COUNTER_DESC_LENGTH_MAX_INTEL = 0x94FF
|
||||
/// </summary>
|
||||
PerfqueryCounterDescLengthMaxIntel = ((int)0x94FF) ,
|
||||
/// <summary>
|
||||
/// Original was GL_PERFQUERY_GPA_EXTENDED_COUNTERS_INTEL = 0x9500
|
||||
/// </summary>
|
||||
PerfqueryGpaExtendedCountersIntel = ((int)0x9500) ,
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Used in GL.InterleavedArrays
|
||||
/// </summary>
|
||||
|
@ -45166,6 +45351,33 @@ namespace OpenTK.Graphics.OpenGL
|
|||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Not used directly.
|
||||
/// </summary>
|
||||
public enum NvxGpuMemoryInfo : int
|
||||
{
|
||||
/// <summary>
|
||||
/// Original was GL_GPU_MEMORY_INFO_DEDICATED_VIDMEM_NVX = 0x9047
|
||||
/// </summary>
|
||||
GpuMemoryInfoDedicatedVidmemNvx = ((int)0x9047) ,
|
||||
/// <summary>
|
||||
/// Original was GL_GPU_MEMORY_INFO_TOTAL_AVAILABLE_MEMORY_NVX = 0x9048
|
||||
/// </summary>
|
||||
GpuMemoryInfoTotalAvailableMemoryNvx = ((int)0x9048) ,
|
||||
/// <summary>
|
||||
/// Original was GL_GPU_MEMORY_INFO_CURRENT_AVAILABLE_VIDMEM_NVX = 0x9049
|
||||
/// </summary>
|
||||
GpuMemoryInfoCurrentAvailableVidmemNvx = ((int)0x9049) ,
|
||||
/// <summary>
|
||||
/// Original was GL_GPU_MEMORY_INFO_EVICTION_COUNT_NVX = 0x904A
|
||||
/// </summary>
|
||||
GpuMemoryInfoEvictionCountNvx = ((int)0x904A) ,
|
||||
/// <summary>
|
||||
/// Original was GL_GPU_MEMORY_INFO_EVICTED_MEMORY_NVX = 0x904B
|
||||
/// </summary>
|
||||
GpuMemoryInfoEvictedMemoryNvx = ((int)0x904B) ,
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Used in GL.GetObjectLabel, GL.ObjectLabel
|
||||
/// </summary>
|
||||
|
|
|
@ -23,8 +23,6 @@
|
|||
// OTHER DEALINGS IN THE SOFTWARE.
|
||||
//
|
||||
|
||||
|
||||
|
||||
namespace OpenTK.Graphics.OpenGL4
|
||||
{
|
||||
using System;
|
||||
|
@ -20869,6 +20867,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); }
|
||||
|
@ -20901,6 +20900,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); }
|
||||
|
@ -20933,6 +20933,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")]
|
||||
[CLSCompliant(false)]
|
||||
public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); }
|
||||
|
@ -20965,6 +20966,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); }
|
||||
|
@ -20997,6 +20999,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); }
|
||||
|
@ -21029,6 +21032,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectLabel")]
|
||||
[CLSCompliant(false)]
|
||||
public static unsafe void GetObjectLabel(OpenTK.Graphics.OpenGL4.ObjectLabelIdentifier identifier, UInt32 name, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); }
|
||||
|
@ -21056,6 +21060,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); }
|
||||
|
@ -21083,6 +21088,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); }
|
||||
|
@ -21110,6 +21116,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")]
|
||||
[CLSCompliant(false)]
|
||||
public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); }
|
||||
|
@ -21137,6 +21144,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetObjectPtrLabel<T0>([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label)
|
||||
|
@ -21166,6 +21174,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetObjectPtrLabel<T0>([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label)
|
||||
|
@ -21195,6 +21204,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")]
|
||||
[CLSCompliant(false)]
|
||||
public static unsafe void GetObjectPtrLabel<T0>([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label)
|
||||
|
@ -21224,6 +21234,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetObjectPtrLabel<T0>([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label)
|
||||
|
@ -21253,6 +21264,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetObjectPtrLabel<T0>([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label)
|
||||
|
@ -21282,6 +21294,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")]
|
||||
[CLSCompliant(false)]
|
||||
public static unsafe void GetObjectPtrLabel<T0>([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label)
|
||||
|
@ -21311,6 +21324,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetObjectPtrLabel<T0>([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label)
|
||||
|
@ -21340,6 +21354,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetObjectPtrLabel<T0>([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label)
|
||||
|
@ -21369,6 +21384,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")]
|
||||
[CLSCompliant(false)]
|
||||
public static unsafe void GetObjectPtrLabel<T0>([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label)
|
||||
|
@ -21398,6 +21414,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetObjectPtrLabel<T0>([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label)
|
||||
|
@ -21427,6 +21444,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetObjectPtrLabel<T0>([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label)
|
||||
|
@ -21456,6 +21474,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug|VERSION_4_3", Version = "4.3", EntryPoint = "glGetObjectPtrLabel")]
|
||||
[CLSCompliant(false)]
|
||||
public static unsafe void GetObjectPtrLabel<T0>([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label)
|
||||
|
@ -22924,6 +22943,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// A token identifying the interface within program containing the resource named name.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.ProgramProperty[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); }
|
||||
|
@ -22943,6 +22963,24 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// </param>
|
||||
[AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.ProgramProperty[] props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: v4.3 and ARB_program_interface_query|VERSION_4_3]
|
||||
/// Retrieve values for multiple properties of a single active resource within a program object
|
||||
/// </summary>
|
||||
/// <param name="program">
|
||||
/// <para>
|
||||
/// The name of a program object whose resources to query.
|
||||
/// </para>
|
||||
/// </param>
|
||||
/// <param name="programInterface">
|
||||
/// <para>
|
||||
/// A token identifying the interface within program containing the resource named name.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 propCount, ref OpenTK.Graphics.OpenGL4.ProgramProperty props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: v4.3 and ARB_program_interface_query|VERSION_4_3]
|
||||
|
@ -22958,6 +22996,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// A token identifying the interface within program containing the resource named name.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")]
|
||||
[CLSCompliant(false)]
|
||||
public static unsafe void GetProgramResource(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.ProgramProperty* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* @params) { throw new NotImplementedException(); }
|
||||
|
@ -22975,6 +23014,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// A token identifying the interface within program containing the resource named name.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.ProgramProperty[] props, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); }
|
||||
|
@ -22994,6 +23034,24 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// </param>
|
||||
[AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.ProgramProperty[] props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] Int32[] @params) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: v4.3 and ARB_program_interface_query|VERSION_4_3]
|
||||
/// Retrieve values for multiple properties of a single active resource within a program object
|
||||
/// </summary>
|
||||
/// <param name="program">
|
||||
/// <para>
|
||||
/// The name of a program object whose resources to query.
|
||||
/// </para>
|
||||
/// </param>
|
||||
/// <param name="programInterface">
|
||||
/// <para>
|
||||
/// A token identifying the interface within program containing the resource named name.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 propCount, ref OpenTK.Graphics.OpenGL4.ProgramProperty props, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 @params) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: v4.3 and ARB_program_interface_query|VERSION_4_3]
|
||||
|
@ -23009,6 +23067,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// A token identifying the interface within program containing the resource named name.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceiv")]
|
||||
[CLSCompliant(false)]
|
||||
public static unsafe void GetProgramResource(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 propCount, OpenTK.Graphics.OpenGL4.ProgramProperty* props, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] Int32* @params) { throw new NotImplementedException(); }
|
||||
|
@ -23134,6 +23193,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a character array into which will be written the name of the resource.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetProgramResourceName(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); }
|
||||
|
@ -23171,6 +23231,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a character array into which will be written the name of the resource.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetProgramResourceName(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); }
|
||||
|
@ -23208,6 +23269,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a character array into which will be written the name of the resource.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")]
|
||||
[CLSCompliant(false)]
|
||||
public static unsafe void GetProgramResourceName(Int32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, Int32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); }
|
||||
|
@ -23245,6 +23307,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a character array into which will be written the name of the resource.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetProgramResourceName(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); }
|
||||
|
@ -23282,6 +23345,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a character array into which will be written the name of the resource.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetProgramResourceName(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); }
|
||||
|
@ -23319,6 +23383,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a character array into which will be written the name of the resource.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "ARB_program_interface_query|VERSION_4_3", Version = "4.3", EntryPoint = "glGetProgramResourceName")]
|
||||
[CLSCompliant(false)]
|
||||
public static unsafe void GetProgramResourceName(UInt32 program, OpenTK.Graphics.OpenGL4.ProgramInterface programInterface, UInt32 index, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder name) { throw new NotImplementedException(); }
|
||||
|
@ -35765,7 +35830,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// </param>
|
||||
[AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glSampleMaski")]
|
||||
[CLSCompliant(false)]
|
||||
public static void SampleMask(Int32 index, Int32 mask) { throw new NotImplementedException(); }
|
||||
public static void SampleMask(Int32 maskNumber, Int32 mask) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: v3.2 and ARB_texture_multisample|VERSION_3_2]
|
||||
/// Set the value of a sub-word of the sample mask
|
||||
|
@ -35782,7 +35847,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// </param>
|
||||
[AutoGenerated(Category = "ARB_texture_multisample|VERSION_3_2", Version = "3.2", EntryPoint = "glSampleMaski")]
|
||||
[CLSCompliant(false)]
|
||||
public static void SampleMask(UInt32 index, UInt32 mask) { throw new NotImplementedException(); }
|
||||
public static void SampleMask(UInt32 maskNumber, UInt32 mask) { throw new NotImplementedException(); }
|
||||
|
||||
/// <summary>[requires: v3.3 and ARB_sampler_objects|VERSION_3_3]
|
||||
/// Set sampler parameters
|
||||
|
@ -49948,6 +50013,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); }
|
||||
|
@ -49975,6 +50041,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); }
|
||||
|
@ -50002,6 +50069,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")]
|
||||
[CLSCompliant(false)]
|
||||
public static unsafe void GetObjectPtrLabel(IntPtr ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label) { throw new NotImplementedException(); }
|
||||
|
@ -50029,6 +50097,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetObjectPtrLabel<T0>([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label)
|
||||
|
@ -50058,6 +50127,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetObjectPtrLabel<T0>([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label)
|
||||
|
@ -50087,6 +50157,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")]
|
||||
[CLSCompliant(false)]
|
||||
public static unsafe void GetObjectPtrLabel<T0>([InAttribute, OutAttribute] T0[] ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label)
|
||||
|
@ -50116,6 +50187,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetObjectPtrLabel<T0>([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label)
|
||||
|
@ -50145,6 +50217,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetObjectPtrLabel<T0>([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label)
|
||||
|
@ -50174,6 +50247,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")]
|
||||
[CLSCompliant(false)]
|
||||
public static unsafe void GetObjectPtrLabel<T0>([InAttribute, OutAttribute] T0[,] ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label)
|
||||
|
@ -50203,6 +50277,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetObjectPtrLabel<T0>([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label)
|
||||
|
@ -50232,6 +50307,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetObjectPtrLabel<T0>([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label)
|
||||
|
@ -50261,6 +50337,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")]
|
||||
[CLSCompliant(false)]
|
||||
public static unsafe void GetObjectPtrLabel<T0>([InAttribute, OutAttribute] T0[,,] ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label)
|
||||
|
@ -50290,6 +50367,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetObjectPtrLabel<T0>([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label)
|
||||
|
@ -50319,6 +50397,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")]
|
||||
[CLSCompliant(false)]
|
||||
public static void GetObjectPtrLabel<T0>([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label)
|
||||
|
@ -50348,6 +50427,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
/// The address of a string that will receive the object label.
|
||||
/// </para>
|
||||
/// </param>
|
||||
[Obsolete("Use out overload instead")]
|
||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectPtrLabelKHR")]
|
||||
[CLSCompliant(false)]
|
||||
public static unsafe void GetObjectPtrLabel<T0>([InAttribute, OutAttribute] ref T0 ptr, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder label)
|
||||
|
@ -51993,7 +52073,7 @@ namespace OpenTK.Graphics.OpenGL4
|
|||
static extern void glSampleCoverage(Single value, bool invert);
|
||||
[Slot(464)]
|
||||
[DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)]
|
||||
static extern void glSampleMaski(UInt32 index, UInt32 mask);
|
||||
static extern void glSampleMaski(UInt32 maskNumber, UInt32 mask);
|
||||
[Slot(465)]
|
||||
[DllImport(Library, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)]
|
||||
static extern void glSamplerParameterf(UInt32 sampler, System.Int32 pname, Single param);
|
||||
|
|
|
@ -23,8 +23,6 @@
|
|||
// OTHER DEALINGS IN THE SOFTWARE.
|
||||
//
|
||||
|
||||
|
||||
|
||||
using System;
|
||||
|
||||
namespace OpenTK.Graphics.OpenGL4
|
||||
|
|
Loading…
Reference in a new issue