mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-24 02:45:36 +00:00
Merge branch 'gl_Mar2014' into develop
This commit is contained in:
commit
d12bd18158
|
@ -35,18 +35,18 @@ using Enum=Bind.Structures.Enum;
|
|||
|
||||
namespace Bind
|
||||
{
|
||||
class BindStreamWriter : StreamWriter
|
||||
class BindStreamWriter : IDisposable
|
||||
{
|
||||
int indent_level = 0;
|
||||
Regex splitLines = new Regex(Environment.NewLine, RegexOptions.Compiled);
|
||||
//Regex splitLines = new Regex("(\r\n|\n\r|\n|\r)", RegexOptions.Compiled);
|
||||
|
||||
static readonly char[] SplitCharacters = new char[] { '\r', '\n' };
|
||||
readonly StreamWriter sw;
|
||||
public readonly string File;
|
||||
|
||||
int indent_level = 0;
|
||||
|
||||
public BindStreamWriter(string file)
|
||||
: base(file)
|
||||
{
|
||||
File = file;
|
||||
sw = new StreamWriter(file);
|
||||
}
|
||||
|
||||
public void Indent()
|
||||
|
@ -60,9 +60,10 @@ namespace Bind
|
|||
--indent_level;
|
||||
}
|
||||
|
||||
public override void Write(string value)
|
||||
public void Write(string value)
|
||||
{
|
||||
var lines = splitLines.Split(value);
|
||||
var lines = value.Split(SplitCharacters,
|
||||
StringSplitOptions.RemoveEmptyEntries);
|
||||
bool is_multiline = lines.Length > 1;
|
||||
if (is_multiline)
|
||||
{
|
||||
|
@ -71,39 +72,60 @@ namespace Bind
|
|||
{
|
||||
var line = lines[i];
|
||||
WriteIndentations();
|
||||
base.Write(line);
|
||||
base.Write(System.Environment.NewLine);
|
||||
sw.Write(line);
|
||||
sw.Write(System.Environment.NewLine);
|
||||
}
|
||||
// Write the last line without appending a newline
|
||||
WriteIndentations();
|
||||
base.Write(lines[lines.Length - 1]);
|
||||
sw.Write(lines[lines.Length - 1]);
|
||||
}
|
||||
else
|
||||
{
|
||||
WriteIndentations();
|
||||
base.Write(value);
|
||||
sw.Write(value);
|
||||
}
|
||||
}
|
||||
|
||||
public override void WriteLine(string value)
|
||||
public void Write(string format, params object[] args)
|
||||
{
|
||||
// The Mono implementation of WriteLine calls Write internally.
|
||||
// The .Net implementation does not.
|
||||
// If running on Mono, we must avoid indenting in WriteLine
|
||||
// because then we'll indent twice (once in WriteLine and once in Write).
|
||||
// If running on .Net we must indent in both WriteLine and Write.
|
||||
// Neat, no?
|
||||
if (System.Type.GetType("Mono.Runtime") == null)
|
||||
{
|
||||
WriteIndentations();
|
||||
}
|
||||
base.WriteLine(value);
|
||||
Write(String.Format(format, args));
|
||||
}
|
||||
|
||||
public void WriteLine()
|
||||
{
|
||||
sw.WriteLine();
|
||||
}
|
||||
|
||||
public void WriteLine(string value)
|
||||
{
|
||||
Write(value);
|
||||
WriteLine();
|
||||
}
|
||||
|
||||
public void WriteLine(string format, params object[] args)
|
||||
{
|
||||
WriteLine(String.Format(format, args));
|
||||
}
|
||||
|
||||
public void Flush()
|
||||
{
|
||||
sw.Flush();
|
||||
}
|
||||
|
||||
public void Close()
|
||||
{
|
||||
sw.Close();
|
||||
}
|
||||
|
||||
void WriteIndentations()
|
||||
{
|
||||
for (int i = indent_level; i > 0; i--)
|
||||
base.Write(" ");
|
||||
sw.Write(" ");
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
sw.Dispose();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1644,6 +1644,34 @@
|
|||
|
||||
</replace>
|
||||
|
||||
<overload name="glcore">
|
||||
<function name="GetObjectLabel" extension="Core" obsolete="Use out overload instead">
|
||||
<param name="length">
|
||||
<count>0</count>
|
||||
</param>
|
||||
</function>
|
||||
<function name="GetObjectPtrLabel" extension="Core" obsolete="Use out overload instead">
|
||||
<param name="length">
|
||||
<count>0</count>
|
||||
</param>
|
||||
</function>
|
||||
<function name="GetProgramResourceiv" extension="Core" obsolete="Use out overload instead">
|
||||
<param name="length">
|
||||
<count>0</count>
|
||||
</param>
|
||||
</function>
|
||||
<function name="GetProgramResourceName" extension="Core" obsolete="Use out overload instead">
|
||||
<param name="length">
|
||||
<count>0</count>
|
||||
</param>
|
||||
</function>
|
||||
<function name="GetObjectPtrLabel" extension="KHR" obsolete="Use out overload instead">
|
||||
<param name="length">
|
||||
<count>0</count>
|
||||
</param>
|
||||
</function>
|
||||
</overload>
|
||||
|
||||
<overload name="gl">
|
||||
<!-- generated from apitest -->
|
||||
<function name="TessellationMode" extension="Amd" obsolete="Use AmdVertexShaderTessellator overload instead">
|
||||
|
@ -1781,11 +1809,46 @@
|
|||
<type>BeginMode</type>
|
||||
</param>
|
||||
</function>
|
||||
<function name="EdgeFlagv" extension="Core" obsolete="Use ref overload instead">
|
||||
<param name="flag">
|
||||
<count>0</count>
|
||||
</param>
|
||||
</function>
|
||||
<function name="GetObjectLabel" extension="Core" obsolete="Use out overload instead">
|
||||
<param name="length">
|
||||
<count>0</count>
|
||||
</param>
|
||||
</function>
|
||||
<function name="GetObjectPtrLabel" extension="Core" obsolete="Use out overload instead">
|
||||
<param name="length">
|
||||
<count>0</count>
|
||||
</param>
|
||||
</function>
|
||||
<function name="GetPointerv" extension="Core" obsolete="Use out overload instead">
|
||||
<param name="params">
|
||||
<count>0</count>
|
||||
</param>
|
||||
</function>
|
||||
<function name="GetProgram" extension="Core" obsolete="Use GetProgramParameterName overload instead">
|
||||
<param name="pname" index="1">
|
||||
<type>ProgramParameter</type>
|
||||
</param>
|
||||
</function>
|
||||
<function name="GetProgramPipelineInfoLog" extension="Core" obsolete="Use out overload instead">
|
||||
<param name="length">
|
||||
<count>0</count>
|
||||
</param>
|
||||
</function>
|
||||
<function name="GetProgramResourceiv" extension="Core" obsolete="Use out overload instead">
|
||||
<param name="length">
|
||||
<count>0</count>
|
||||
</param>
|
||||
</function>
|
||||
<function name="GetProgramResourceName" extension="Core" obsolete="Use out overload instead">
|
||||
<param name="length">
|
||||
<count>0</count>
|
||||
</param>
|
||||
</function>
|
||||
<function name="GetString" extension="Core" obsolete="Use StringNameIndexed overload instead">
|
||||
<param name="name" index="0">
|
||||
<type>StringName</type>
|
||||
|
@ -1886,6 +1949,21 @@
|
|||
<type>ExtDirectStateAccess</type>
|
||||
</param>
|
||||
</function>
|
||||
<function name="GetObjectLabel" extension="Ext" obsolete="Use out overload instead">
|
||||
<param name="length">
|
||||
<count>0</count>
|
||||
</param>
|
||||
</function>
|
||||
<function name="GetPointerv" extension="Ext" obsolete="Use out overload instead">
|
||||
<param name="params">
|
||||
<count>0</count>
|
||||
</param>
|
||||
</function>
|
||||
<function name="GetProgramPipelineInfoLog" extension="Ext" obsolete="Use out overload instead">
|
||||
<param name="length">
|
||||
<count>0</count>
|
||||
</param>
|
||||
</function>
|
||||
<function name="IsEnabledIndexed" extension="Ext" obsolete="Use IndexedEnableCap overload instead">
|
||||
<param name="target" index="0">
|
||||
<type>ExtDrawBuffers2</type>
|
||||
|
@ -1936,6 +2014,16 @@
|
|||
<type>IbmVertexArrayLists</type>
|
||||
</param>
|
||||
</function>
|
||||
<function name="GetObjectPtrLabel" extension="KHR" obsolete="Use out overload instead">
|
||||
<param name="length">
|
||||
<count>0</count>
|
||||
</param>
|
||||
</function>
|
||||
<function name="GetPointerv" extension="KHR" obsolete="Use out overload instead">
|
||||
<param name="params">
|
||||
<count>0</count>
|
||||
</param>
|
||||
</function>
|
||||
<function name="DrawTransformFeedback" extension="NV" obsolete="Use PrimitiveType overload instead">
|
||||
<param name="mode" index="0">
|
||||
<type>NvTransformFeedback2</type>
|
||||
|
@ -4797,6 +4885,21 @@
|
|||
<function name="DrawElements" obsolete="Use PrimitiveType overload instead">
|
||||
<param name="mode"><type>BeginMode</type></param>
|
||||
</function>
|
||||
<function name="ExtGetBuffersQCOM" extension="QCOM" obsolete="Use out overload instead">
|
||||
<param name="numBuffers"><count>0</count></param>
|
||||
</function>
|
||||
<function name="ExtGetFramebuffersQCOM" extension="QCOM" obsolete="Use out overload instead">
|
||||
<param name="numFramebuffers"><count>0</count></param>
|
||||
</function>
|
||||
<function name="ExtGetProgramsQCOM" extension="QCOM" obsolete="Use out overload instead">
|
||||
<param name="numPrograms"><count>0</count></param>
|
||||
</function>
|
||||
<function name="ExtGetRenderbuffersQCOM" extension="QCOM" obsolete="Use out overload instead">
|
||||
<param name="numRenderbuffers"><count>0</count></param>
|
||||
</function>
|
||||
<function name="ExtGetShadersQCOM" extension="QCOM" obsolete="Use out overload instead">
|
||||
<param name="numShaders"><count>0</count></param>
|
||||
</function>
|
||||
</overload>
|
||||
|
||||
<replace name="gles1">
|
||||
|
@ -5179,7 +5282,7 @@
|
|||
<token name="TEXTURE9" value="0x84C9" />
|
||||
</enum>
|
||||
</add>
|
||||
|
||||
|
||||
<!-- gles2 replacements for 2.0 and 3.0 -->
|
||||
<replace name="gles2" version="2.0|3.0">
|
||||
<!-- Buffer Objects [2.9] -->
|
||||
|
@ -5667,7 +5770,42 @@
|
|||
</function>
|
||||
</replace>
|
||||
|
||||
<!-- gles2 overloads for 2.0 backwards compatibility-->
|
||||
<!-- gles2 overloads for backwards compatibility (2.0 and 3.0) -->
|
||||
<overload name="gles2">
|
||||
<function name="GetObjectLabel" obsolete="Use out overload instead">
|
||||
<param name="length"><count>0</count></param>
|
||||
</function>
|
||||
<function name="GetObjectPtrLabel" obsolete="Use out overload instead">
|
||||
<param name="length"><count>0</count></param>
|
||||
</function>
|
||||
<function name="GetTranslatedShaderSource" extension="ANGLE" obsolete="Use out overload instead">
|
||||
<param name="length"><count>0</count></param>
|
||||
</function>
|
||||
<function name="GetProgramPipelineInfoLog" extension="EXT" obsolete="Use out overload instead">
|
||||
<param name="length"><count>0</count></param>
|
||||
</function>
|
||||
<function name="GetProgramBinary" extension="OES" obsolete="Use out overload instead">
|
||||
<param name="length"><count>0</count></param>
|
||||
<param name="binaryFormat"><count>0</count></param>
|
||||
</function>
|
||||
<function name="ExtGetBuffers" extension="QCOM" obsolete="Use out overload instead">
|
||||
<param name="numBuffers"><count>0</count></param>
|
||||
</function>
|
||||
<function name="ExtGetFramebuffers" extension="QCOM" obsolete="Use out overload instead">
|
||||
<param name="numFramebuffers"><count>0</count></param>
|
||||
</function>
|
||||
<function name="ExtGetPrograms" extension="QCOM" obsolete="Use out overload instead">
|
||||
<param name="numPrograms"><count>0</count></param>
|
||||
</function>
|
||||
<function name="ExtGetRenderbuffers" extension="QCOM" obsolete="Use out overload instead">
|
||||
<param name="numRenderbuffers"><count>0</count></param>
|
||||
</function>
|
||||
<function name="ExtGetShaders" extension="QCOM" obsolete="Use out overload instead">
|
||||
<param name="numShaders"><count>0</count></param>
|
||||
</function>
|
||||
</overload>
|
||||
|
||||
<!-- gles2 overloads for backwards compatibility (2.0 only) -->
|
||||
<overload name="gles2" version="2.0">
|
||||
<!-- PrimtiveType <=> BeginMode overloads for backwards compatibility -->
|
||||
<function name="DrawArrays" obsolete="Use PrimitiveType overload instead">
|
||||
|
@ -6555,7 +6693,7 @@
|
|||
</enum>
|
||||
|
||||
</add>
|
||||
|
||||
|
||||
<!-- gles2 3.0 enums -->
|
||||
<add name="gles2" version="3.0">
|
||||
<enum name="ActiveAttribType">
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -6,7 +6,7 @@ GLintptr, IntPtr
|
|||
GLboolean, bool # Boolean # Int32
|
||||
GLbitfield, UInt32
|
||||
# GLvoid*, IntPtr
|
||||
# GLvoid, Void #Object
|
||||
GLvoid, Void #Object
|
||||
GLchar, Char
|
||||
GLbyte, SByte
|
||||
GLubyte, Byte
|
||||
|
|
|
@ -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
|
||||
|
|
63
Source/OpenTK/Graphics/ES11/ES11Obsolete.cs
Normal file
63
Source/OpenTK/Graphics/ES11/ES11Obsolete.cs
Normal file
|
@ -0,0 +1,63 @@
|
|||
#region License
|
||||
//
|
||||
// ES11Obsolete.cs
|
||||
//
|
||||
// Author:
|
||||
// Stefanos A. <stapostol@gmail.com>
|
||||
//
|
||||
// Copyright (c) 2006-2014 Stefanos Apostolopoulos
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to deal
|
||||
// in the Software without restriction, including without limitation the rights
|
||||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
// copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
// THE SOFTWARE.
|
||||
//
|
||||
#endregion
|
||||
|
||||
using System;
|
||||
|
||||
namespace OpenTK.Graphics.ES11
|
||||
{
|
||||
partial class GL
|
||||
{
|
||||
/// <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>
|
||||
[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 Single GetClipPlane(OpenTK.Graphics.ES11.All plane) { 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>
|
||||
[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(OpenTK.Graphics.ES11.All plane) { throw new NotImplementedException(); }
|
||||
}
|
||||
}
|
||||
|
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>
|
||||
|
|
|
@ -1243,6 +1243,93 @@ namespace OpenTK.Graphics.OpenGL
|
|||
|
||||
public static partial class Ext
|
||||
{
|
||||
/// <summary>[requires: EXT_direct_state_access]</summary>
|
||||
[Obsolete("Use ClearNamedBufferSubData(..., format, type, data) instead.")]
|
||||
public static void ClearNamedBufferSubData(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr offset, IntPtr size, IntPtr data)
|
||||
{
|
||||
ClearNamedBufferSubData(buffer, internalformat, offset, size, format, type, data);
|
||||
}
|
||||
|
||||
/// <summary>[requires: EXT_direct_state_access]</summary>
|
||||
[Obsolete("Use ClearNamedBufferSubData(..., format, type, data) instead.")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ClearNamedBufferSubData<T6>(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T6[] data)
|
||||
where T6 : struct
|
||||
{
|
||||
ClearNamedBufferSubData(buffer, internalformat, offset, size, format, type, data);
|
||||
}
|
||||
|
||||
/// <summary>[requires: EXT_direct_state_access]</summary>
|
||||
[Obsolete("Use ClearNamedBufferSubData(..., format, type, data) instead.")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ClearNamedBufferSubData<T6>(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T6[,] data)
|
||||
where T6 : struct
|
||||
{
|
||||
ClearNamedBufferSubData(buffer, internalformat, offset, size, format, type, data);
|
||||
}
|
||||
|
||||
/// <summary>[requires: EXT_direct_state_access]</summary>
|
||||
[Obsolete("Use ClearNamedBufferSubData(..., format, type, data) instead.")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ClearNamedBufferSubData<T6>(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T6[,,] data)
|
||||
where T6 : struct
|
||||
{
|
||||
ClearNamedBufferSubData(buffer, internalformat, offset, size, format, type, data);
|
||||
}
|
||||
|
||||
/// <summary>[requires: EXT_direct_state_access]</summary>
|
||||
[Obsolete("Use ClearNamedBufferSubData(..., format, type, data) instead.")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ClearNamedBufferSubData<T6>(Int32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] ref T6 data)
|
||||
where T6 : struct
|
||||
{
|
||||
ClearNamedBufferSubData(buffer, internalformat, offset, size, format, type, ref data);
|
||||
}
|
||||
|
||||
/// <summary>[requires: EXT_direct_state_access]</summary>
|
||||
[Obsolete("Use ClearNamedBufferSubData(..., format, type, data) instead.")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ClearNamedBufferSubData(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr offset, IntPtr size, IntPtr data)
|
||||
{
|
||||
ClearNamedBufferSubData(buffer, internalformat, offset, size, format, type, data);
|
||||
}
|
||||
|
||||
/// <summary>[requires: EXT_direct_state_access]</summary>
|
||||
[Obsolete("Use ClearNamedBufferSubData(..., format, type, data) instead.")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ClearNamedBufferSubData<T6>(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T6[] data)
|
||||
where T6 : struct
|
||||
{
|
||||
ClearNamedBufferSubData(buffer, internalformat, offset, size, format, type, data);
|
||||
}
|
||||
|
||||
/// <summary>[requires: EXT_direct_state_access]</summary>
|
||||
[Obsolete("Use ClearNamedBufferSubData(..., format, type, data) instead.")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ClearNamedBufferSubData<T6>(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T6[,] data)
|
||||
where T6 : struct
|
||||
{
|
||||
ClearNamedBufferSubData(buffer, internalformat, offset, size, format, type, data);
|
||||
}
|
||||
|
||||
/// <summary>[requires: EXT_direct_state_access]</summary>
|
||||
[Obsolete("Use ClearNamedBufferSubData(..., format, type, data) instead.")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ClearNamedBufferSubData<T6>(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] T6[,,] data)
|
||||
where T6 : struct
|
||||
{
|
||||
ClearNamedBufferSubData(buffer, internalformat, offset, size, format, type, data);
|
||||
}
|
||||
|
||||
/// <summary>[requires: EXT_direct_state_access]</summary>
|
||||
[Obsolete("Use ClearNamedBufferSubData(..., format, type, data) instead.")]
|
||||
[CLSCompliant(false)]
|
||||
public static void ClearNamedBufferSubData<T6>(UInt32 buffer, OpenTK.Graphics.OpenGL.ExtDirectStateAccess internalformat, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr offset, IntPtr size, [InAttribute, OutAttribute] ref T6 data)
|
||||
where T6 : struct
|
||||
{
|
||||
ClearNamedBufferSubData(buffer, internalformat, offset, size, format, type, ref data);
|
||||
}
|
||||
|
||||
[Obsolete("Use ProgramParameter(..., AssemblyProgramParameterArb, ...) instead.")]
|
||||
public static void ProgramParameter(Int32 program, ExtGeometryShader4 pname, Int32 value)
|
||||
{
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -782,6 +782,7 @@
|
|||
<Compile Include="Graphics\ES20\ES20Enums.cs" />
|
||||
<Compile Include="Graphics\ES11\ES11.cs" />
|
||||
<Compile Include="Graphics\ES11\ES11Enums.cs" />
|
||||
<Compile Include="Graphics\ES11\ES11Obsolete.cs" />
|
||||
<Compile Include="SlotAttribute.cs" />
|
||||
<Compile Include="RewrittenAttribute.cs" />
|
||||
<Compile Include="Graphics\OpenGL\GLObsolete.cs" />
|
||||
|
|
Loading…
Reference in a new issue