mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 15:25:31 +00:00
Merge branch 'enumfix'
This commit is contained in:
commit
19d9beb6a4
|
@ -85,7 +85,6 @@ namespace Bind
|
||||||
foreach (var d in signatures)
|
foreach (var d in signatures)
|
||||||
{
|
{
|
||||||
var replace = GetFuncOverride(nav, d, apiname, apiversion);
|
var replace = GetFuncOverride(nav, d, apiname, apiversion);
|
||||||
|
|
||||||
TranslateExtension(d);
|
TranslateExtension(d);
|
||||||
TranslateReturnType(d, replace, nav, enum_processor, enums, apiname, version);
|
TranslateReturnType(d, replace, nav, enum_processor, enums, apiname, version);
|
||||||
TranslateParameters(d, replace, nav, enum_processor, enums, apiname, version);
|
TranslateParameters(d, replace, nav, enum_processor, enums, apiname, version);
|
||||||
|
@ -114,12 +113,12 @@ namespace Bind
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Console.WriteLine("Generating convenience overloads.");
|
|
||||||
delegates.AddRange(CreateConvenienceOverloads(delegates));
|
|
||||||
|
|
||||||
Console.WriteLine("Generating wrappers.");
|
Console.WriteLine("Generating wrappers.");
|
||||||
var wrappers = CreateWrappers(delegates, enums);
|
var wrappers = CreateWrappers(delegates, enums);
|
||||||
|
|
||||||
|
Console.WriteLine("Generating convenience overloads.");
|
||||||
|
wrappers.AddRange(CreateConvenienceOverloads(wrappers));
|
||||||
|
|
||||||
Console.WriteLine("Generating CLS compliant overloads.");
|
Console.WriteLine("Generating CLS compliant overloads.");
|
||||||
wrappers = CreateCLSCompliantWrappers(wrappers, enums);
|
wrappers = CreateCLSCompliantWrappers(wrappers, enums);
|
||||||
|
|
||||||
|
@ -215,8 +214,11 @@ namespace Bind
|
||||||
category = enum_processor.TranslateEnumName(category);
|
category = enum_processor.TranslateEnumName(category);
|
||||||
|
|
||||||
// Try to find out if it is an enum. If the type exists in the normal GLEnums list, use this.
|
// Try to find out if it is an enum. If the type exists in the normal GLEnums list, use this.
|
||||||
// Special case for Boolean - it is an enum, but it is dumb to use that instead of the 'bool' type.
|
// Special case for Boolean which is there simply because C89 does not support bool types.
|
||||||
bool normal = enums.TryGetValue(type.CurrentType, out @enum);
|
// We don't really need that in C#
|
||||||
|
bool normal =
|
||||||
|
enums.TryGetValue(type.CurrentType, out @enum) ||
|
||||||
|
enums.TryGetValue(enum_processor.TranslateEnumName(type.CurrentType), out @enum);
|
||||||
|
|
||||||
// Translate enum types
|
// Translate enum types
|
||||||
type.IsEnum = false;
|
type.IsEnum = false;
|
||||||
|
@ -233,7 +235,9 @@ namespace Bind
|
||||||
// Some functions and enums have the same names.
|
// Some functions and enums have the same names.
|
||||||
// Make sure we reference the enums rather than the functions.
|
// Make sure we reference the enums rather than the functions.
|
||||||
if (normal)
|
if (normal)
|
||||||
type.QualifiedType = type.CurrentType.Insert(0, String.Format("{0}.", Settings.EnumsOutput));
|
{
|
||||||
|
type.QualifiedType = String.Format("{0}.{1}", Settings.EnumsOutput, @enum.Name);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (Generator.GLTypes.TryGetValue(type.CurrentType, out s))
|
else if (Generator.GLTypes.TryGetValue(type.CurrentType, out s))
|
||||||
|
@ -328,7 +332,7 @@ namespace Bind
|
||||||
}
|
}
|
||||||
return extension;
|
return extension;
|
||||||
}
|
}
|
||||||
|
|
||||||
void TranslateExtension(Delegate d)
|
void TranslateExtension(Delegate d)
|
||||||
{
|
{
|
||||||
d.Extension = TranslateExtension(d.Extension);
|
d.Extension = TranslateExtension(d.Extension);
|
||||||
|
@ -382,16 +386,6 @@ namespace Bind
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// If we have a convenience overload, we should turn the name from
|
|
||||||
// plural into singular
|
|
||||||
if (d.ReturnType.WrapperType == WrapperTypes.ConvenienceReturnType ||
|
|
||||||
d.ReturnType.WrapperType == WrapperTypes.ConvenienceArrayReturnType ||
|
|
||||||
d.Parameters.Any(p => p.WrapperType == WrapperTypes.ConvenienceArrayType))
|
|
||||||
{
|
|
||||||
trimmed_name = trimmed_name.Replace("Queries", "Query");
|
|
||||||
trimmed_name = trimmed_name.TrimEnd('s');
|
|
||||||
}
|
|
||||||
|
|
||||||
return trimmed_name;
|
return trimmed_name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -511,7 +505,7 @@ namespace Bind
|
||||||
{
|
{
|
||||||
ApplyReturnTypeReplacement(d, function_override);
|
ApplyReturnTypeReplacement(d, function_override);
|
||||||
|
|
||||||
TranslateType(d.ReturnType, function_override, nav, enum_processor,enums, d.Category, apiname);
|
TranslateType(d.ReturnType, function_override, nav, enum_processor, enums, d.Category, apiname);
|
||||||
|
|
||||||
if (d.ReturnType.CurrentType.ToLower().Contains("void") && d.ReturnType.Pointer != 0)
|
if (d.ReturnType.CurrentType.ToLower().Contains("void") && d.ReturnType.Pointer != 0)
|
||||||
{
|
{
|
||||||
|
@ -608,7 +602,7 @@ namespace Bind
|
||||||
}
|
}
|
||||||
else if (p.CurrentType.ToLower().Contains("void") ||
|
else if (p.CurrentType.ToLower().Contains("void") ||
|
||||||
(!String.IsNullOrEmpty(p.PreviousType) && p.PreviousType.ToLower().Contains("void")))
|
(!String.IsNullOrEmpty(p.PreviousType) && p.PreviousType.ToLower().Contains("void")))
|
||||||
//|| CurrentType.Contains("IntPtr"))
|
//|| CurrentType.Contains("IntPtr"))
|
||||||
{
|
{
|
||||||
p.CurrentType = "IntPtr";
|
p.CurrentType = "IntPtr";
|
||||||
p.Pointer = 0;
|
p.Pointer = 0;
|
||||||
|
@ -846,17 +840,17 @@ namespace Bind
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
IEnumerable<Delegate> CreateConvenienceOverloads(DelegateCollection delegates)
|
IEnumerable<Function> CreateConvenienceOverloads(FunctionCollection wrappers)
|
||||||
{
|
{
|
||||||
foreach (var list in delegates.Values)
|
var convenience_wrappers = new List<Function>();
|
||||||
|
foreach (var d in wrappers.Values.SelectMany(w => w))
|
||||||
{
|
{
|
||||||
var d = list.First();
|
|
||||||
if (d.Parameters.Count > 0 && d.Parameters.Count <= 2)
|
if (d.Parameters.Count > 0 && d.Parameters.Count <= 2)
|
||||||
{
|
{
|
||||||
var p = d.Parameters.Last();
|
var p = d.Parameters.Last();
|
||||||
var r = d.ReturnType;
|
var r = d.ReturnType;
|
||||||
|
|
||||||
var name = GetTrimmedName(d);
|
var name = d.Name;
|
||||||
|
|
||||||
bool is_candidate = true;
|
bool is_candidate = true;
|
||||||
is_candidate &=
|
is_candidate &=
|
||||||
|
@ -869,28 +863,41 @@ namespace Bind
|
||||||
is_candidate &= p.ElementCount == 0 || p.ElementCount == 1;
|
is_candidate &= p.ElementCount == 0 || p.ElementCount == 1;
|
||||||
is_candidate &= r.CurrentType == "void" && r.Pointer == 0;
|
is_candidate &= r.CurrentType == "void" && r.Pointer == 0;
|
||||||
|
|
||||||
|
Function f = null;
|
||||||
if (is_candidate && p.Flow == FlowDirection.Out)
|
if (is_candidate && p.Flow == FlowDirection.Out)
|
||||||
{
|
{
|
||||||
// Match Gen*|Get*|New*([Out] int[] names) methods
|
// Match Gen*|Get*|New*([Out] int[] names) methods
|
||||||
var f = CreateReturnTypeConvenienceWrapper(d);
|
f = CreateReturnTypeConvenienceWrapper(d);
|
||||||
yield return f;
|
|
||||||
}
|
}
|
||||||
else if (is_candidate && p.Flow != FlowDirection.Out)
|
else if (is_candidate && p.Flow != FlowDirection.Out)
|
||||||
{
|
{
|
||||||
// Match *Delete(int count, int[] names) methods
|
// Match *Delete(int count, int[] names) methods
|
||||||
if (d.Parameters.Count == 2)
|
if (d.Parameters.Count == 2)
|
||||||
{
|
{
|
||||||
var f = CreateArrayReturnTypeConvencienceWrapper(d);
|
f = CreateArrayReturnTypeConvenienceWrapper(d);
|
||||||
yield return f;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (f != null)
|
||||||
|
{
|
||||||
|
// If we have a convenience overload, we should turn its name from
|
||||||
|
// plural into singular
|
||||||
|
if (f.ReturnType.WrapperType == WrapperTypes.ConvenienceReturnType ||
|
||||||
|
f.ReturnType.WrapperType == WrapperTypes.ConvenienceArrayReturnType ||
|
||||||
|
f.Parameters.Any(t => t.WrapperType == WrapperTypes.ConvenienceArrayType))
|
||||||
|
{
|
||||||
|
f.TrimmedName = f.TrimmedName.Replace("Queries", "Query").TrimEnd('s');
|
||||||
|
}
|
||||||
|
convenience_wrappers.Add(f);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return convenience_wrappers;
|
||||||
}
|
}
|
||||||
|
|
||||||
static Delegate CreateReturnTypeConvenienceWrapper(Delegate d)
|
static Function CreateReturnTypeConvenienceWrapper(Function d)
|
||||||
{
|
{
|
||||||
var f = new Delegate(d);
|
var f = new Function(d);
|
||||||
f.ReturnType = new Type(f.Parameters.Last());
|
f.ReturnType = new Type(f.Parameters.Last());
|
||||||
f.ReturnType.Pointer = 0;
|
f.ReturnType.Pointer = 0;
|
||||||
f.Parameters.RemoveAt(f.Parameters.Count - 1);
|
f.Parameters.RemoveAt(f.Parameters.Count - 1);
|
||||||
|
@ -908,9 +915,9 @@ namespace Bind
|
||||||
return f;
|
return f;
|
||||||
}
|
}
|
||||||
|
|
||||||
static Delegate CreateArrayReturnTypeConvencienceWrapper(Delegate d)
|
static Function CreateArrayReturnTypeConvenienceWrapper(Function d)
|
||||||
{
|
{
|
||||||
var f = new Delegate(d);
|
var f = new Function(d);
|
||||||
var p_array = f.Parameters.Last();
|
var p_array = f.Parameters.Last();
|
||||||
var p_size = f.Parameters[f.Parameters.Count - 2];
|
var p_size = f.Parameters[f.Parameters.Count - 2];
|
||||||
f.Parameters.RemoveAt(f.Parameters.Count - 2);
|
f.Parameters.RemoveAt(f.Parameters.Count - 2);
|
||||||
|
|
|
@ -1956,6 +1956,207 @@
|
||||||
<type>BeginMode</type>
|
<type>BeginMode</type>
|
||||||
</param>
|
</param>
|
||||||
</function>
|
</function>
|
||||||
|
<function name="GetBufferParameter" extension="Arb" obsolete="Use BufferTargetArb overload instead">
|
||||||
|
<param name="target" index="0">
|
||||||
|
<type>ArbVertexBufferObject</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="GetBufferPointer" extension="Arb" obsolete="Use BufferTargetArb overload instead">
|
||||||
|
<param name="target" index="0">
|
||||||
|
<type>ArbVertexBufferObject</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="MapBuffer" extension="Arb" obsolete="Use BufferAccessArb overload instead">
|
||||||
|
<param name="access" index="1">
|
||||||
|
<type>ArbVertexBufferObject</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="BlendEquationSeparate" extension="Ext" obsolete="Use BlendEquationModeExt overload instead">
|
||||||
|
<param name="modeRGB" index="0">
|
||||||
|
<type>ExtBlendEquationSeparate</type>
|
||||||
|
</param>
|
||||||
|
<param name="modeAlpha" index="1">
|
||||||
|
<type>ExtBlendEquationSeparate</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="ConvolutionFilter1D" extension="Ext" obsolete="Use ConvolutionTargetExt overload instead">
|
||||||
|
<param name="target" index="0">
|
||||||
|
<type>ExtConvolution</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="ConvolutionFilter2D" extension="Ext" obsolete="Use ConvolutionTargetExt overload instead">
|
||||||
|
<param name="target" index="0">
|
||||||
|
<type>ExtConvolution</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="ConvolutionParameter" extension="Ext" obsolete="Use ConvolutionTargetExt overload instead">
|
||||||
|
<param name="target" index="0">
|
||||||
|
<type>ExtConvolution</type>
|
||||||
|
</param>
|
||||||
|
<param name="pname" index="1">
|
||||||
|
<type>ExtConvolution</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="CopyConvolutionFilter1D" extension="Ext" obsolete="Use ConvolutionTargetExt overload instead">
|
||||||
|
<param name="target" index="0">
|
||||||
|
<type>ExtConvolution</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="CopyConvolutionFilter2D" extension="Ext" obsolete="Use ConvolutionTargetExt overload instead">
|
||||||
|
<param name="target" index="0">
|
||||||
|
<type>ExtConvolution</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="FogCoordPointer" extension="Ext" obsolete="Use FogPointerTypeExt overload instead">
|
||||||
|
<param name="type" index="0">
|
||||||
|
<type>ExtFogCoord</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="GetConvolutionFilter" extension="Ext" obsolete="Use ConvolutionTargetExt overload instead">
|
||||||
|
<param name="target" index="0">
|
||||||
|
<type>ExtConvolution</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="GetConvolutionParameter" extension="Ext" obsolete="Use ConvolutionTargetExt overload instead">
|
||||||
|
<param name="target" index="0">
|
||||||
|
<type>ExtConvolution</type>
|
||||||
|
</param>
|
||||||
|
<param name="pname" index="1">
|
||||||
|
<type>ExtConvolution</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="GetHistogram" extension="Ext" obsolete="Use HistogramTargetExt overload instead">
|
||||||
|
<param name="target" index="0">
|
||||||
|
<type>ExtHistogram</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="GetHistogramParameter" extension="Ext" obsolete="Use HistogramTargetExt overload instead">
|
||||||
|
<param name="target" index="0">
|
||||||
|
<type>ExtHistogram</type>
|
||||||
|
</param>
|
||||||
|
<param name="pname" index="1">
|
||||||
|
<type>ExtHistogram</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="GetMinmax" extension="Ext" obsolete="Use MinmaxTargetExt overload instead">
|
||||||
|
<param name="target" index="0">
|
||||||
|
<type>ExtHistogram</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="GetMinmaxParameter" extension="Ext" obsolete="Use MinmaxTargetExt overload instead">
|
||||||
|
<param name="target" index="0">
|
||||||
|
<type>ExtHistogram</type>
|
||||||
|
</param>
|
||||||
|
<param name="pname" index="1">
|
||||||
|
<type>ExtHistogram</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="Histogram" extension="Ext" obsolete="Use HistogramTargetExt overload instead">
|
||||||
|
<param name="target" index="0">
|
||||||
|
<type>ExtHistogram</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="Minmax" extension="Ext" obsolete="Use MinmaxTargetExt overload instead">
|
||||||
|
<param name="target" index="0">
|
||||||
|
<type>ExtHistogram</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="ResetHistogram" extension="Ext" obsolete="Use HistogramTargetExt overload instead">
|
||||||
|
<param name="target" index="0">
|
||||||
|
<type>ExtHistogram</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="ResetMinmax" extension="Ext" obsolete="Use MinmaxTargetExt overload instead">
|
||||||
|
<param name="target" index="0">
|
||||||
|
<type>ExtHistogram</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="BindTransformFeedback" extension="NV" obsolete="Use BufferTargetArb overload instead">
|
||||||
|
<param name="target" index="0">
|
||||||
|
<type>NvTransformFeedback2</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="ColorTable" extension="Sgi" obsolete="Use ColorTableTargetSgi overload instead">
|
||||||
|
<param name="target" index="0">
|
||||||
|
<type>SgiColorTable</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="ColorTableParameter" extension="Sgi" obsolete="Use ColorTableTargetSgi overload instead">
|
||||||
|
<param name="target" index="0">
|
||||||
|
<type>SgiColorTable</type>
|
||||||
|
</param>
|
||||||
|
<param name="pname" index="1">
|
||||||
|
<type>SgiColorTable</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="CopyColorTable" extension="Sgi" obsolete="Use ColorTableTargetSgi overload instead">
|
||||||
|
<param name="target" index="0">
|
||||||
|
<type>SgiColorTable</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="GetColorTable" extension="Sgi" obsolete="Use ColorTableTargetSgi overload instead">
|
||||||
|
<param name="target" index="0">
|
||||||
|
<type>SgiColorTable</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="GetColorTableParameter" extension="Sgi" obsolete="Use ColorTableTargetSgi overload instead">
|
||||||
|
<param name="target" index="0">
|
||||||
|
<type>SgiColorTable</type>
|
||||||
|
</param>
|
||||||
|
<param name="pname" index="1">
|
||||||
|
<type>SgiColorTable</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="GetPixelTexGenParameter" extension="Sgis" obsolete="Use PixelTexGenParameterNameSgis overload instead">
|
||||||
|
<param name="pname" index="0">
|
||||||
|
<type>SgisPixelTexture</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="PixelTexGenParameter" extension="Sgis" obsolete="Use PixelTexGenParameterNameSgis overload instead">
|
||||||
|
<param name="pname" index="0">
|
||||||
|
<type>SgisPixelTexture</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="SamplePattern" extension="Sgis" obsolete="Use SamplePatternSgis overload instead">
|
||||||
|
<param name="pattern" index="0">
|
||||||
|
<type>SgisMultisample</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="Deform" extension="Sgix" obsolete="Use FfdMaskSgix overload instead">
|
||||||
|
<param name="mask" index="0">
|
||||||
|
<type>int</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="Deform" extension="Sgix" obsolete="Use FfdMaskSgix overload instead">
|
||||||
|
<param name="mask" index="0">
|
||||||
|
<type>uint</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="DeformationMap3" extension="Sgix" obsolete="Use FfdTargetSgix overload instead">
|
||||||
|
<param name="target" index="0">
|
||||||
|
<type>SgixPolynomialFfd</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="FragmentLightModel" extension="Sgix" obsolete="Use FragmentLightModelParameterSgix overload instead">
|
||||||
|
<param name="pname" index="0">
|
||||||
|
<type>SgixFragmentLighting</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="LightEnv" extension="Sgix" obsolete="Use LightEnvParameterSgix overload instead">
|
||||||
|
<param name="pname" index="0">
|
||||||
|
<type>SgixFragmentLighting</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="LoadIdentityDeformationMap" extension="Sgix" obsolete="Use FfdMaskSgix overload instead">
|
||||||
|
<param name="mask" index="0">
|
||||||
|
<type>int</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
<function name="LoadIdentityDeformationMap" extension="Sgix" obsolete="Use FfdMaskSgix overload instead">
|
||||||
|
<param name="mask" index="0">
|
||||||
|
<type>uint</type>
|
||||||
|
</param>
|
||||||
|
</function>
|
||||||
|
|
||||||
<!-- added manually -->
|
<!-- added manually -->
|
||||||
<function name="BlendFunc" extension="Core" obsolete="Use BlendingFactorSrc overload instead">
|
<function name="BlendFunc" extension="Core" obsolete="Use BlendingFactorSrc overload instead">
|
||||||
|
|
|
@ -74,6 +74,14 @@
|
||||||
<token name="VERTEX_ARRAY_OBJECT_AMD" value="0x9154" />
|
<token name="VERTEX_ARRAY_OBJECT_AMD" value="0x9154" />
|
||||||
<token name="SAMPLER_OBJECT_AMD" value="0x9155" />
|
<token name="SAMPLER_OBJECT_AMD" value="0x9155" />
|
||||||
</enum>
|
</enum>
|
||||||
|
<enum name="AMD_occlusion_query_event">
|
||||||
|
<token name="OCCLUSION_QUERY_EVENT_MASK_AMD" value="0x874F" />
|
||||||
|
<token name="QUERY_DEPTH_PASS_EVENT_BIT_AMD" value="0x00000001" />
|
||||||
|
<token name="QUERY_DEPTH_FAIL_EVENT_BIT_AMD" value="0x00000002" />
|
||||||
|
<token name="QUERY_STENCIL_FAIL_EVENT_BIT_AMD" value="0x00000004" />
|
||||||
|
<token name="QUERY_DEPTH_BOUNDS_FAIL_EVENT_BIT_AMD" value="0x00000008" />
|
||||||
|
<token name="QUERY_ALL_EVENT_BITS_AMD" value="0xFFFFFFFF" />
|
||||||
|
</enum>
|
||||||
<enum name="AMD_performance_monitor">
|
<enum name="AMD_performance_monitor">
|
||||||
<token name="COUNTER_TYPE_AMD" value="0x8BC0" />
|
<token name="COUNTER_TYPE_AMD" value="0x8BC0" />
|
||||||
<token name="COUNTER_RANGE_AMD" value="0x8BC1" />
|
<token name="COUNTER_RANGE_AMD" value="0x8BC1" />
|
||||||
|
@ -3370,6 +3378,10 @@
|
||||||
<token name="GEOMETRY_DEFORMATION_SGIX" value="0x8194" />
|
<token name="GEOMETRY_DEFORMATION_SGIX" value="0x8194" />
|
||||||
<token name="TEXTURE_DEFORMATION_SGIX" value="0x8195" />
|
<token name="TEXTURE_DEFORMATION_SGIX" value="0x8195" />
|
||||||
</enum>
|
</enum>
|
||||||
|
<enum name="FogCoordinatePointerType">
|
||||||
|
<token name="FLOAT" value="0x1406" />
|
||||||
|
<token name="DOUBLE" value="0x140A" />
|
||||||
|
</enum>
|
||||||
<enum name="FogMode">
|
<enum name="FogMode">
|
||||||
<token name="EXP" value="0x0800" deprecated="3.2" />
|
<token name="EXP" value="0x0800" deprecated="3.2" />
|
||||||
<token name="EXP2" value="0x0801" deprecated="3.2" />
|
<token name="EXP2" value="0x0801" deprecated="3.2" />
|
||||||
|
@ -3385,6 +3397,14 @@
|
||||||
<token name="FOG_OFFSET_VALUE_SGIX" value="0x8199" />
|
<token name="FOG_OFFSET_VALUE_SGIX" value="0x8199" />
|
||||||
<token name="FOG_START" value="0x0B63" deprecated="3.2" />
|
<token name="FOG_START" value="0x0B63" deprecated="3.2" />
|
||||||
</enum>
|
</enum>
|
||||||
|
<enum name="FogPointerTypeEXT">
|
||||||
|
<token name="FLOAT" value="0x1406" />
|
||||||
|
<token name="DOUBLE" value="0x140A" />
|
||||||
|
</enum>
|
||||||
|
<enum name="FogPointerTypeIBM">
|
||||||
|
<token name="FLOAT" value="0x1406" />
|
||||||
|
<token name="DOUBLE" value="0x140A" />
|
||||||
|
</enum>
|
||||||
<enum name="FragmentLightModelParameterSGIX">
|
<enum name="FragmentLightModelParameterSGIX">
|
||||||
<token name="FRAGMENT_LIGHT_MODEL_AMBIENT_SGIX" value="0x840A" />
|
<token name="FRAGMENT_LIGHT_MODEL_AMBIENT_SGIX" value="0x840A" />
|
||||||
<token name="FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX" value="0x8408" />
|
<token name="FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX" value="0x8408" />
|
||||||
|
@ -4519,16 +4539,9 @@
|
||||||
<enum name="NV_bindless_multi_draw_indirect" />
|
<enum name="NV_bindless_multi_draw_indirect" />
|
||||||
<enum name="NV_bindless_texture" />
|
<enum name="NV_bindless_texture" />
|
||||||
<enum name="NV_blend_equation_advanced">
|
<enum name="NV_blend_equation_advanced">
|
||||||
<token name="BLUE_NV" value="0x1905" />
|
|
||||||
<token name="GREEN_NV" value="0x1904" />
|
|
||||||
<token name="RED_NV" value="0x1903" />
|
|
||||||
<token name="XOR_NV" value="0x1506" />
|
|
||||||
<token name="BLUE" value="0x1905" />
|
|
||||||
<token name="GREEN" value="0x1904" />
|
|
||||||
<token name="RED" value="0x1903" />
|
|
||||||
<token name="XOR" value="0x1506" />
|
|
||||||
<token name="BLEND_OVERLAP_NV" value="0x9281" />
|
<token name="BLEND_OVERLAP_NV" value="0x9281" />
|
||||||
<token name="BLEND_PREMULTIPLIED_SRC_NV" value="0x9280" />
|
<token name="BLEND_PREMULTIPLIED_SRC_NV" value="0x9280" />
|
||||||
|
<token name="BLUE_NV" value="0x1905" />
|
||||||
<token name="COLORBURN_NV" value="0x929A" />
|
<token name="COLORBURN_NV" value="0x929A" />
|
||||||
<token name="COLORDODGE_NV" value="0x9299" />
|
<token name="COLORDODGE_NV" value="0x9299" />
|
||||||
<token name="CONJOINT_NV" value="0x9284" />
|
<token name="CONJOINT_NV" value="0x9284" />
|
||||||
|
@ -4542,6 +4555,7 @@
|
||||||
<token name="DST_OUT_NV" value="0x928D" />
|
<token name="DST_OUT_NV" value="0x928D" />
|
||||||
<token name="DST_OVER_NV" value="0x9289" />
|
<token name="DST_OVER_NV" value="0x9289" />
|
||||||
<token name="EXCLUSION_NV" value="0x92A0" />
|
<token name="EXCLUSION_NV" value="0x92A0" />
|
||||||
|
<token name="GREEN_NV" value="0x1904" />
|
||||||
<token name="HARDLIGHT_NV" value="0x929B" />
|
<token name="HARDLIGHT_NV" value="0x929B" />
|
||||||
<token name="HARDMIX_NV" value="0x92A9" />
|
<token name="HARDMIX_NV" value="0x92A9" />
|
||||||
<token name="HSL_COLOR_NV" value="0x92AF" />
|
<token name="HSL_COLOR_NV" value="0x92AF" />
|
||||||
|
@ -4564,6 +4578,7 @@
|
||||||
<token name="PLUS_CLAMPED_NV" value="0x92B1" />
|
<token name="PLUS_CLAMPED_NV" value="0x92B1" />
|
||||||
<token name="PLUS_DARKER_NV" value="0x9292" />
|
<token name="PLUS_DARKER_NV" value="0x9292" />
|
||||||
<token name="PLUS_NV" value="0x9291" />
|
<token name="PLUS_NV" value="0x9291" />
|
||||||
|
<token name="RED_NV" value="0x1903" />
|
||||||
<token name="SCREEN_NV" value="0x9295" />
|
<token name="SCREEN_NV" value="0x9295" />
|
||||||
<token name="SOFTLIGHT_NV" value="0x929C" />
|
<token name="SOFTLIGHT_NV" value="0x929C" />
|
||||||
<token name="SRC_ATOP_NV" value="0x928E" />
|
<token name="SRC_ATOP_NV" value="0x928E" />
|
||||||
|
@ -4573,6 +4588,7 @@
|
||||||
<token name="SRC_OVER_NV" value="0x9288" />
|
<token name="SRC_OVER_NV" value="0x9288" />
|
||||||
<token name="UNCORRELATED_NV" value="0x9282" />
|
<token name="UNCORRELATED_NV" value="0x9282" />
|
||||||
<token name="VIVIDLIGHT_NV" value="0x92A6" />
|
<token name="VIVIDLIGHT_NV" value="0x92A6" />
|
||||||
|
<token name="XOR_NV" value="0x1506" />
|
||||||
<token name="ZERO" value="0" />
|
<token name="ZERO" value="0" />
|
||||||
</enum>
|
</enum>
|
||||||
<enum name="NV_blend_equation_advanced_coherent">
|
<enum name="NV_blend_equation_advanced_coherent">
|
||||||
|
@ -5381,6 +5397,13 @@
|
||||||
<token name="VIDEO_CAPTURE_SURFACE_ORIGIN_NV" value="0x903C" />
|
<token name="VIDEO_CAPTURE_SURFACE_ORIGIN_NV" value="0x903C" />
|
||||||
</enum>
|
</enum>
|
||||||
<enum name="NVX_conditional_render" />
|
<enum name="NVX_conditional_render" />
|
||||||
|
<enum name="OcclusionQueryEventMaskAMD">
|
||||||
|
<token name="QUERY_DEPTH_PASS_EVENT_BIT_AMD" value="0x00000001" />
|
||||||
|
<token name="QUERY_DEPTH_FAIL_EVENT_BIT_AMD" value="0x00000002" />
|
||||||
|
<token name="QUERY_STENCIL_FAIL_EVENT_BIT_AMD" value="0x00000004" />
|
||||||
|
<token name="QUERY_DEPTH_BOUNDS_FAIL_EVENT_BIT_AMD" value="0x00000008" />
|
||||||
|
<token name="QUERY_ALL_EVENT_BITS_AMD" value="0xFFFFFFFF" />
|
||||||
|
</enum>
|
||||||
<enum name="OES_byte_coordinates" />
|
<enum name="OES_byte_coordinates" />
|
||||||
<enum name="OES_compressed_paletted_texture">
|
<enum name="OES_compressed_paletted_texture">
|
||||||
<token name="PALETTE4_RGB8_OES" value="0x8B90" />
|
<token name="PALETTE4_RGB8_OES" value="0x8B90" />
|
||||||
|
@ -15066,6 +15089,13 @@
|
||||||
<param name="exponent" type="GLint *" flow="out" count="16" />
|
<param name="exponent" type="GLint *" flow="out" count="16" />
|
||||||
<returns type="GLbitfield" />
|
<returns type="GLbitfield" />
|
||||||
</function>
|
</function>
|
||||||
|
<function name="QueryObjectParameteruiAMD" category="AMD_occlusion_query_event" extension="AMD">
|
||||||
|
<param name="target" type="GLenum" flow="in" />
|
||||||
|
<param name="id" type="GLuint" flow="in" />
|
||||||
|
<param name="pname" type="GLenum" flow="in" />
|
||||||
|
<param name="param" type="OcclusionQueryEventMaskAMD" flow="in" />
|
||||||
|
<returns type="void" />
|
||||||
|
</function>
|
||||||
<function name="RasterPos2xOES" category="OES_fixed_point" extension="OES">
|
<function name="RasterPos2xOES" category="OES_fixed_point" extension="OES">
|
||||||
<param name="x" type="GLfixed" flow="in" />
|
<param name="x" type="GLfixed" flow="in" />
|
||||||
<param name="y" type="GLfixed" flow="in" />
|
<param name="y" type="GLfixed" flow="in" />
|
||||||
|
@ -25725,6 +25755,10 @@
|
||||||
<token name="MAX_GEOMETRY_IMAGE_UNIFORMS" value="0x90CD" />
|
<token name="MAX_GEOMETRY_IMAGE_UNIFORMS" value="0x90CD" />
|
||||||
<token name="MAX_FRAGMENT_IMAGE_UNIFORMS" value="0x90CE" />
|
<token name="MAX_FRAGMENT_IMAGE_UNIFORMS" value="0x90CE" />
|
||||||
<token name="MAX_COMBINED_IMAGE_UNIFORMS" value="0x90CF" />
|
<token name="MAX_COMBINED_IMAGE_UNIFORMS" value="0x90CF" />
|
||||||
|
<token name="COMPRESSED_RGBA_BPTC_UNORM" value="0x8E8C" />
|
||||||
|
<token name="COMPRESSED_SRGB_ALPHA_BPTC_UNORM" value="0x8E8D" />
|
||||||
|
<token name="COMPRESSED_RGB_BPTC_SIGNED_FLOAT" value="0x8E8E" />
|
||||||
|
<token name="COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT" value="0x8E8F" />
|
||||||
<token name="TEXTURE_IMMUTABLE_FORMAT" value="0x912F" />
|
<token name="TEXTURE_IMMUTABLE_FORMAT" value="0x912F" />
|
||||||
</enum>
|
</enum>
|
||||||
<function name="BindImageTexture" category="VERSION_4_2" extension="Core" version="4.2">
|
<function name="BindImageTexture" category="VERSION_4_2" extension="Core" version="4.2">
|
||||||
|
@ -27802,6 +27836,10 @@
|
||||||
<token name="GEOMETRY_DEFORMATION_SGIX" value="0x8194" />
|
<token name="GEOMETRY_DEFORMATION_SGIX" value="0x8194" />
|
||||||
<token name="TEXTURE_DEFORMATION_SGIX" value="0x8195" />
|
<token name="TEXTURE_DEFORMATION_SGIX" value="0x8195" />
|
||||||
</enum>
|
</enum>
|
||||||
|
<enum name="FogCoordinatePointerType">
|
||||||
|
<token name="FLOAT" value="0x1406" />
|
||||||
|
<token name="DOUBLE" value="0x140A" />
|
||||||
|
</enum>
|
||||||
<enum name="FogMode">
|
<enum name="FogMode">
|
||||||
<token name="FOG_FUNC_SGIS" value="0x812A" />
|
<token name="FOG_FUNC_SGIS" value="0x812A" />
|
||||||
<token name="LINEAR" value="0x2601" />
|
<token name="LINEAR" value="0x2601" />
|
||||||
|
@ -27809,6 +27847,14 @@
|
||||||
<enum name="FogParameter">
|
<enum name="FogParameter">
|
||||||
<token name="FOG_OFFSET_VALUE_SGIX" value="0x8199" />
|
<token name="FOG_OFFSET_VALUE_SGIX" value="0x8199" />
|
||||||
</enum>
|
</enum>
|
||||||
|
<enum name="FogPointerTypeEXT">
|
||||||
|
<token name="FLOAT" value="0x1406" />
|
||||||
|
<token name="DOUBLE" value="0x140A" />
|
||||||
|
</enum>
|
||||||
|
<enum name="FogPointerTypeIBM">
|
||||||
|
<token name="FLOAT" value="0x1406" />
|
||||||
|
<token name="DOUBLE" value="0x140A" />
|
||||||
|
</enum>
|
||||||
<enum name="FragmentLightModelParameterSGIX">
|
<enum name="FragmentLightModelParameterSGIX">
|
||||||
<token name="FRAGMENT_LIGHT_MODEL_AMBIENT_SGIX" value="0x840A" />
|
<token name="FRAGMENT_LIGHT_MODEL_AMBIENT_SGIX" value="0x840A" />
|
||||||
<token name="FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX" value="0x8408" />
|
<token name="FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX" value="0x8408" />
|
||||||
|
@ -28629,6 +28675,13 @@
|
||||||
<token name="INT" value="0x1404" />
|
<token name="INT" value="0x1404" />
|
||||||
<token name="SHORT" value="0x1402" />
|
<token name="SHORT" value="0x1402" />
|
||||||
</enum>
|
</enum>
|
||||||
|
<enum name="OcclusionQueryEventMaskAMD">
|
||||||
|
<token name="QUERY_DEPTH_PASS_EVENT_BIT_AMD" value="0x00000001" />
|
||||||
|
<token name="QUERY_DEPTH_FAIL_EVENT_BIT_AMD" value="0x00000002" />
|
||||||
|
<token name="QUERY_STENCIL_FAIL_EVENT_BIT_AMD" value="0x00000004" />
|
||||||
|
<token name="QUERY_DEPTH_BOUNDS_FAIL_EVENT_BIT_AMD" value="0x00000008" />
|
||||||
|
<token name="QUERY_ALL_EVENT_BITS_AMD" value="0xFFFFFFFF" />
|
||||||
|
</enum>
|
||||||
<enum name="PixelCopyType">
|
<enum name="PixelCopyType">
|
||||||
<token name="COLOR" value="0x1800" />
|
<token name="COLOR" value="0x1800" />
|
||||||
<token name="COLOR_EXT" value="0x1800" />
|
<token name="COLOR_EXT" value="0x1800" />
|
||||||
|
@ -35931,6 +35984,10 @@
|
||||||
<token name="MAX_GEOMETRY_IMAGE_UNIFORMS" value="0x90CD" />
|
<token name="MAX_GEOMETRY_IMAGE_UNIFORMS" value="0x90CD" />
|
||||||
<token name="MAX_FRAGMENT_IMAGE_UNIFORMS" value="0x90CE" />
|
<token name="MAX_FRAGMENT_IMAGE_UNIFORMS" value="0x90CE" />
|
||||||
<token name="MAX_COMBINED_IMAGE_UNIFORMS" value="0x90CF" />
|
<token name="MAX_COMBINED_IMAGE_UNIFORMS" value="0x90CF" />
|
||||||
|
<token name="COMPRESSED_RGBA_BPTC_UNORM" value="0x8E8C" />
|
||||||
|
<token name="COMPRESSED_SRGB_ALPHA_BPTC_UNORM" value="0x8E8D" />
|
||||||
|
<token name="COMPRESSED_RGB_BPTC_SIGNED_FLOAT" value="0x8E8E" />
|
||||||
|
<token name="COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT" value="0x8E8F" />
|
||||||
<token name="TEXTURE_IMMUTABLE_FORMAT" value="0x912F" />
|
<token name="TEXTURE_IMMUTABLE_FORMAT" value="0x912F" />
|
||||||
</enum>
|
</enum>
|
||||||
<function name="BindImageTexture" category="VERSION_4_2" extension="Core" version="4.2">
|
<function name="BindImageTexture" category="VERSION_4_2" extension="Core" version="4.2">
|
||||||
|
@ -37219,6 +37276,10 @@
|
||||||
<token name="GEOMETRY_DEFORMATION_SGIX" value="0x8194" />
|
<token name="GEOMETRY_DEFORMATION_SGIX" value="0x8194" />
|
||||||
<token name="TEXTURE_DEFORMATION_SGIX" value="0x8195" />
|
<token name="TEXTURE_DEFORMATION_SGIX" value="0x8195" />
|
||||||
</enum>
|
</enum>
|
||||||
|
<enum name="FogCoordinatePointerType">
|
||||||
|
<token name="FLOAT" value="0x1406" />
|
||||||
|
<token name="DOUBLE" value="0x140A" />
|
||||||
|
</enum>
|
||||||
<enum name="FogMode">
|
<enum name="FogMode">
|
||||||
<token name="EXP" value="0x0800" deprecated="3.2" />
|
<token name="EXP" value="0x0800" deprecated="3.2" />
|
||||||
<token name="EXP2" value="0x0801" deprecated="3.2" />
|
<token name="EXP2" value="0x0801" deprecated="3.2" />
|
||||||
|
@ -37234,6 +37295,14 @@
|
||||||
<token name="FOG_OFFSET_VALUE_SGIX" value="0x8199" />
|
<token name="FOG_OFFSET_VALUE_SGIX" value="0x8199" />
|
||||||
<token name="FOG_START" value="0x0B63" deprecated="3.2" />
|
<token name="FOG_START" value="0x0B63" deprecated="3.2" />
|
||||||
</enum>
|
</enum>
|
||||||
|
<enum name="FogPointerTypeEXT">
|
||||||
|
<token name="FLOAT" value="0x1406" />
|
||||||
|
<token name="DOUBLE" value="0x140A" />
|
||||||
|
</enum>
|
||||||
|
<enum name="FogPointerTypeIBM">
|
||||||
|
<token name="FLOAT" value="0x1406" />
|
||||||
|
<token name="DOUBLE" value="0x140A" />
|
||||||
|
</enum>
|
||||||
<enum name="FragmentLightModelParameterSGIX">
|
<enum name="FragmentLightModelParameterSGIX">
|
||||||
<token name="FRAGMENT_LIGHT_MODEL_AMBIENT_SGIX" value="0x840A" />
|
<token name="FRAGMENT_LIGHT_MODEL_AMBIENT_SGIX" value="0x840A" />
|
||||||
<token name="FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX" value="0x8408" />
|
<token name="FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX" value="0x8408" />
|
||||||
|
@ -38150,6 +38219,13 @@
|
||||||
<token name="FENCE_STATUS_NV" value="0x84F3" />
|
<token name="FENCE_STATUS_NV" value="0x84F3" />
|
||||||
<token name="FENCE_CONDITION_NV" value="0x84F4" />
|
<token name="FENCE_CONDITION_NV" value="0x84F4" />
|
||||||
</enum>
|
</enum>
|
||||||
|
<enum name="OcclusionQueryEventMaskAMD">
|
||||||
|
<token name="QUERY_DEPTH_PASS_EVENT_BIT_AMD" value="0x00000001" />
|
||||||
|
<token name="QUERY_DEPTH_FAIL_EVENT_BIT_AMD" value="0x00000002" />
|
||||||
|
<token name="QUERY_STENCIL_FAIL_EVENT_BIT_AMD" value="0x00000004" />
|
||||||
|
<token name="QUERY_DEPTH_BOUNDS_FAIL_EVENT_BIT_AMD" value="0x00000008" />
|
||||||
|
<token name="QUERY_ALL_EVENT_BITS_AMD" value="0xFFFFFFFF" />
|
||||||
|
</enum>
|
||||||
<enum name="OES_blend_equation_separate">
|
<enum name="OES_blend_equation_separate">
|
||||||
<token name="BLEND_EQUATION_RGB_OES" value="0x8009" />
|
<token name="BLEND_EQUATION_RGB_OES" value="0x8009" />
|
||||||
<token name="BLEND_EQUATION_ALPHA_OES" value="0x883D" />
|
<token name="BLEND_EQUATION_ALPHA_OES" value="0x883D" />
|
||||||
|
@ -42081,6 +42157,10 @@
|
||||||
<enum name="FJ_shader_binary_GCCSO">
|
<enum name="FJ_shader_binary_GCCSO">
|
||||||
<token name="GCCSO_SHADER_BINARY_FJ" value="0x9260" />
|
<token name="GCCSO_SHADER_BINARY_FJ" value="0x9260" />
|
||||||
</enum>
|
</enum>
|
||||||
|
<enum name="FogCoordinatePointerType">
|
||||||
|
<token name="FLOAT" value="0x1406" />
|
||||||
|
<token name="DOUBLE" value="0x140A" />
|
||||||
|
</enum>
|
||||||
<enum name="FogMode">
|
<enum name="FogMode">
|
||||||
<token name="EXP" value="0x0800" deprecated="3.2" />
|
<token name="EXP" value="0x0800" deprecated="3.2" />
|
||||||
<token name="EXP2" value="0x0801" deprecated="3.2" />
|
<token name="EXP2" value="0x0801" deprecated="3.2" />
|
||||||
|
@ -42096,6 +42176,14 @@
|
||||||
<token name="FOG_OFFSET_VALUE_SGIX" value="0x8199" />
|
<token name="FOG_OFFSET_VALUE_SGIX" value="0x8199" />
|
||||||
<token name="FOG_START" value="0x0B63" deprecated="3.2" />
|
<token name="FOG_START" value="0x0B63" deprecated="3.2" />
|
||||||
</enum>
|
</enum>
|
||||||
|
<enum name="FogPointerTypeEXT">
|
||||||
|
<token name="FLOAT" value="0x1406" />
|
||||||
|
<token name="DOUBLE" value="0x140A" />
|
||||||
|
</enum>
|
||||||
|
<enum name="FogPointerTypeIBM">
|
||||||
|
<token name="FLOAT" value="0x1406" />
|
||||||
|
<token name="DOUBLE" value="0x140A" />
|
||||||
|
</enum>
|
||||||
<enum name="FragmentLightModelParameterSGIX">
|
<enum name="FragmentLightModelParameterSGIX">
|
||||||
<token name="FRAGMENT_LIGHT_MODEL_AMBIENT_SGIX" value="0x840A" />
|
<token name="FRAGMENT_LIGHT_MODEL_AMBIENT_SGIX" value="0x840A" />
|
||||||
<token name="FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX" value="0x8408" />
|
<token name="FRAGMENT_LIGHT_MODEL_LOCAL_VIEWER_SGIX" value="0x8408" />
|
||||||
|
@ -43142,16 +43230,9 @@
|
||||||
<token name="SHORT" value="0x1402" />
|
<token name="SHORT" value="0x1402" />
|
||||||
</enum>
|
</enum>
|
||||||
<enum name="NV_blend_equation_advanced">
|
<enum name="NV_blend_equation_advanced">
|
||||||
<token name="BLUE_NV" value="0x1905" />
|
|
||||||
<token name="GREEN_NV" value="0x1904" />
|
|
||||||
<token name="RED_NV" value="0x1903" />
|
|
||||||
<token name="XOR_NV" value="0x1506" />
|
|
||||||
<token name="BLUE" value="0x1905" />
|
|
||||||
<token name="GREEN" value="0x1904" />
|
|
||||||
<token name="RED" value="0x1903" />
|
|
||||||
<token name="XOR" value="0x1506" />
|
|
||||||
<token name="BLEND_OVERLAP_NV" value="0x9281" />
|
<token name="BLEND_OVERLAP_NV" value="0x9281" />
|
||||||
<token name="BLEND_PREMULTIPLIED_SRC_NV" value="0x9280" />
|
<token name="BLEND_PREMULTIPLIED_SRC_NV" value="0x9280" />
|
||||||
|
<token name="BLUE_NV" value="0x1905" />
|
||||||
<token name="COLORBURN_NV" value="0x929A" />
|
<token name="COLORBURN_NV" value="0x929A" />
|
||||||
<token name="COLORDODGE_NV" value="0x9299" />
|
<token name="COLORDODGE_NV" value="0x9299" />
|
||||||
<token name="CONJOINT_NV" value="0x9284" />
|
<token name="CONJOINT_NV" value="0x9284" />
|
||||||
|
@ -43165,6 +43246,7 @@
|
||||||
<token name="DST_OUT_NV" value="0x928D" />
|
<token name="DST_OUT_NV" value="0x928D" />
|
||||||
<token name="DST_OVER_NV" value="0x9289" />
|
<token name="DST_OVER_NV" value="0x9289" />
|
||||||
<token name="EXCLUSION_NV" value="0x92A0" />
|
<token name="EXCLUSION_NV" value="0x92A0" />
|
||||||
|
<token name="GREEN_NV" value="0x1904" />
|
||||||
<token name="HARDLIGHT_NV" value="0x929B" />
|
<token name="HARDLIGHT_NV" value="0x929B" />
|
||||||
<token name="HARDMIX_NV" value="0x92A9" />
|
<token name="HARDMIX_NV" value="0x92A9" />
|
||||||
<token name="HSL_COLOR_NV" value="0x92AF" />
|
<token name="HSL_COLOR_NV" value="0x92AF" />
|
||||||
|
@ -43187,6 +43269,7 @@
|
||||||
<token name="PLUS_CLAMPED_NV" value="0x92B1" />
|
<token name="PLUS_CLAMPED_NV" value="0x92B1" />
|
||||||
<token name="PLUS_DARKER_NV" value="0x9292" />
|
<token name="PLUS_DARKER_NV" value="0x9292" />
|
||||||
<token name="PLUS_NV" value="0x9291" />
|
<token name="PLUS_NV" value="0x9291" />
|
||||||
|
<token name="RED_NV" value="0x1903" />
|
||||||
<token name="SCREEN_NV" value="0x9295" />
|
<token name="SCREEN_NV" value="0x9295" />
|
||||||
<token name="SOFTLIGHT_NV" value="0x929C" />
|
<token name="SOFTLIGHT_NV" value="0x929C" />
|
||||||
<token name="SRC_ATOP_NV" value="0x928E" />
|
<token name="SRC_ATOP_NV" value="0x928E" />
|
||||||
|
@ -43196,6 +43279,7 @@
|
||||||
<token name="SRC_OVER_NV" value="0x9288" />
|
<token name="SRC_OVER_NV" value="0x9288" />
|
||||||
<token name="UNCORRELATED_NV" value="0x9282" />
|
<token name="UNCORRELATED_NV" value="0x9282" />
|
||||||
<token name="VIVIDLIGHT_NV" value="0x92A6" />
|
<token name="VIVIDLIGHT_NV" value="0x92A6" />
|
||||||
|
<token name="XOR_NV" value="0x1506" />
|
||||||
<token name="ZERO" value="0" />
|
<token name="ZERO" value="0" />
|
||||||
</enum>
|
</enum>
|
||||||
<enum name="NV_blend_equation_advanced_coherent">
|
<enum name="NV_blend_equation_advanced_coherent">
|
||||||
|
@ -43334,6 +43418,13 @@
|
||||||
</enum>
|
</enum>
|
||||||
<enum name="NV_texture_compression_s3tc_update" />
|
<enum name="NV_texture_compression_s3tc_update" />
|
||||||
<enum name="NV_texture_npot_2D_mipmap" />
|
<enum name="NV_texture_npot_2D_mipmap" />
|
||||||
|
<enum name="OcclusionQueryEventMaskAMD">
|
||||||
|
<token name="QUERY_DEPTH_PASS_EVENT_BIT_AMD" value="0x00000001" />
|
||||||
|
<token name="QUERY_DEPTH_FAIL_EVENT_BIT_AMD" value="0x00000002" />
|
||||||
|
<token name="QUERY_STENCIL_FAIL_EVENT_BIT_AMD" value="0x00000004" />
|
||||||
|
<token name="QUERY_DEPTH_BOUNDS_FAIL_EVENT_BIT_AMD" value="0x00000008" />
|
||||||
|
<token name="QUERY_ALL_EVENT_BITS_AMD" value="0xFFFFFFFF" />
|
||||||
|
</enum>
|
||||||
<enum name="OES_compressed_ETC1_RGB8_texture">
|
<enum name="OES_compressed_ETC1_RGB8_texture">
|
||||||
<token name="ETC1_RGB8_OES" value="0x8D64" />
|
<token name="ETC1_RGB8_OES" value="0x8D64" />
|
||||||
</enum>
|
</enum>
|
||||||
|
@ -43458,6 +43549,26 @@
|
||||||
<token name="COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR" value="0x93DB" />
|
<token name="COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR" value="0x93DB" />
|
||||||
<token name="COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR" value="0x93DC" />
|
<token name="COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR" value="0x93DC" />
|
||||||
<token name="COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR" value="0x93DD" />
|
<token name="COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR" value="0x93DD" />
|
||||||
|
<token name="COMPRESSED_RGBA_ASTC_3x3x3_OES" value="0x93C0" />
|
||||||
|
<token name="COMPRESSED_RGBA_ASTC_4x3x3_OES" value="0x93C1" />
|
||||||
|
<token name="COMPRESSED_RGBA_ASTC_4x4x3_OES" value="0x93C2" />
|
||||||
|
<token name="COMPRESSED_RGBA_ASTC_4x4x4_OES" value="0x93C3" />
|
||||||
|
<token name="COMPRESSED_RGBA_ASTC_5x4x4_OES" value="0x93C4" />
|
||||||
|
<token name="COMPRESSED_RGBA_ASTC_5x5x4_OES" value="0x93C5" />
|
||||||
|
<token name="COMPRESSED_RGBA_ASTC_5x5x5_OES" value="0x93C6" />
|
||||||
|
<token name="COMPRESSED_RGBA_ASTC_6x5x5_OES" value="0x93C7" />
|
||||||
|
<token name="COMPRESSED_RGBA_ASTC_6x6x5_OES" value="0x93C8" />
|
||||||
|
<token name="COMPRESSED_RGBA_ASTC_6x6x6_OES" value="0x93C9" />
|
||||||
|
<token name="COMPRESSED_SRGB8_ALPHA8_ASTC_3x3x3_OES" value="0x93E0" />
|
||||||
|
<token name="COMPRESSED_SRGB8_ALPHA8_ASTC_4x3x3_OES" value="0x93E1" />
|
||||||
|
<token name="COMPRESSED_SRGB8_ALPHA8_ASTC_4x4x3_OES" value="0x93E2" />
|
||||||
|
<token name="COMPRESSED_SRGB8_ALPHA8_ASTC_4x4x4_OES" value="0x93E3" />
|
||||||
|
<token name="COMPRESSED_SRGB8_ALPHA8_ASTC_5x4x4_OES" value="0x93E4" />
|
||||||
|
<token name="COMPRESSED_SRGB8_ALPHA8_ASTC_5x5x4_OES" value="0x93E5" />
|
||||||
|
<token name="COMPRESSED_SRGB8_ALPHA8_ASTC_5x5x5_OES" value="0x93E6" />
|
||||||
|
<token name="COMPRESSED_SRGB8_ALPHA8_ASTC_6x5x5_OES" value="0x93E7" />
|
||||||
|
<token name="COMPRESSED_SRGB8_ALPHA8_ASTC_6x6x5_OES" value="0x93E8" />
|
||||||
|
<token name="COMPRESSED_SRGB8_ALPHA8_ASTC_6x6x6_OES" value="0x93E9" />
|
||||||
</enum>
|
</enum>
|
||||||
<enum name="OES_texture_float">
|
<enum name="OES_texture_float">
|
||||||
<token name="FLOAT" value="0x1406" />
|
<token name="FLOAT" value="0x1406" />
|
||||||
|
|
|
@ -36,6 +36,7 @@ namespace Bind.Structures
|
||||||
Parameters = new ParameterCollection(f.Parameters);
|
Parameters = new ParameterCollection(f.Parameters);
|
||||||
ReturnType = new Type(f.ReturnType);
|
ReturnType = new Type(f.ReturnType);
|
||||||
TrimmedName = f.TrimmedName;
|
TrimmedName = f.TrimmedName;
|
||||||
|
Obsolete = f.Obsolete;
|
||||||
Body.AddRange(f.Body);
|
Body.AddRange(f.Body);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -765,6 +765,7 @@ namespace OpenTK.Graphics.ES11
|
||||||
/// Specifies the name of a texture.
|
/// Specifies the name of a texture.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBindTexture")]
|
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glBindTexture")]
|
||||||
public static
|
public static
|
||||||
void BindTexture(OpenTK.Graphics.ES11.All target, Int32 texture)
|
void BindTexture(OpenTK.Graphics.ES11.All target, Int32 texture)
|
||||||
|
@ -12237,6 +12238,7 @@ namespace OpenTK.Graphics.ES11
|
||||||
/// Specifies a mask that is ANDed with both the reference value and the stored stencil value when the test is done. The initial value is all 1's.
|
/// Specifies a mask that is ANDed with both the reference value and the stored stencil value when the test is done. The initial value is all 1's.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glStencilFunc")]
|
[AutoGenerated(Category = "VERSION_ES_CM_1_0", Version = "1.0", EntryPoint = "glStencilFunc")]
|
||||||
public static
|
public static
|
||||||
void StencilFunc(OpenTK.Graphics.ES11.All func, Int32 @ref, Int32 mask)
|
void StencilFunc(OpenTK.Graphics.ES11.All func, Int32 @ref, Int32 mask)
|
||||||
|
@ -15871,6 +15873,7 @@ namespace OpenTK.Graphics.ES11
|
||||||
/// specifies how source and destination colors are combined. It must be GL_FUNC_ADD, GL_FUNC_SUBTRACT, GL_FUNC_REVERSE_SUBTRACT, GL_MIN, GL_MAX.
|
/// specifies how source and destination colors are combined. It must be GL_FUNC_ADD, GL_FUNC_SUBTRACT, GL_FUNC_REVERSE_SUBTRACT, GL_MIN, GL_MAX.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "EXT_blend_minmax", Version = "", EntryPoint = "glBlendEquationEXT")]
|
[AutoGenerated(Category = "EXT_blend_minmax", Version = "", EntryPoint = "glBlendEquationEXT")]
|
||||||
public static
|
public static
|
||||||
void BlendEquation(OpenTK.Graphics.ES11.All mode)
|
void BlendEquation(OpenTK.Graphics.ES11.All mode)
|
||||||
|
@ -15879,7 +15882,34 @@ namespace OpenTK.Graphics.ES11
|
||||||
using (new ErrorHelper(GraphicsContext.CurrentContext))
|
using (new ErrorHelper(GraphicsContext.CurrentContext))
|
||||||
{
|
{
|
||||||
#endif
|
#endif
|
||||||
Delegates.glBlendEquationEXT((OpenTK.Graphics.ES11.All)mode);
|
Delegates.glBlendEquationEXT((OpenTK.Graphics.ES11.BlendEquationModeExt)mode);
|
||||||
|
#if DEBUG
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>[requires: EXT_blend_minmax]
|
||||||
|
/// Specify the equation used for both the RGB blend equation and the Alpha blend equation
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="buf">
|
||||||
|
/// <para>
|
||||||
|
/// for glBlendEquationi, specifies the index of the draw buffer for which to set the blend equation.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="mode">
|
||||||
|
/// <para>
|
||||||
|
/// specifies how source and destination colors are combined. It must be GL_FUNC_ADD, GL_FUNC_SUBTRACT, GL_FUNC_REVERSE_SUBTRACT, GL_MIN, GL_MAX.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
[AutoGenerated(Category = "EXT_blend_minmax", Version = "", EntryPoint = "glBlendEquationEXT")]
|
||||||
|
public static
|
||||||
|
void BlendEquation(OpenTK.Graphics.ES11.BlendEquationModeExt mode)
|
||||||
|
{
|
||||||
|
#if DEBUG
|
||||||
|
using (new ErrorHelper(GraphicsContext.CurrentContext))
|
||||||
|
{
|
||||||
|
#endif
|
||||||
|
Delegates.glBlendEquationEXT((OpenTK.Graphics.ES11.BlendEquationModeExt)mode);
|
||||||
#if DEBUG
|
#if DEBUG
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -77,7 +77,7 @@ namespace OpenTK.Graphics.ES11
|
||||||
internal extern static void BlendColorxOES(int red, int green, int blue, int alpha);
|
internal extern static void BlendColorxOES(int red, int green, int blue, int alpha);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendEquationEXT", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendEquationEXT", ExactSpelling = true)]
|
||||||
internal extern static void BlendEquationEXT(OpenTK.Graphics.ES11.All mode);
|
internal extern static void BlendEquationEXT(OpenTK.Graphics.ES11.BlendEquationModeExt mode);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendEquationOES", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendEquationOES", ExactSpelling = true)]
|
||||||
internal extern static void BlendEquationOES(OpenTK.Graphics.ES11.All mode);
|
internal extern static void BlendEquationOES(OpenTK.Graphics.ES11.All mode);
|
||||||
|
|
|
@ -75,7 +75,7 @@ namespace OpenTK.Graphics.ES11
|
||||||
internal delegate void BlendColorxOES(int red, int green, int blue, int alpha);
|
internal delegate void BlendColorxOES(int red, int green, int blue, int alpha);
|
||||||
internal static BlendColorxOES glBlendColorxOES;
|
internal static BlendColorxOES glBlendColorxOES;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void BlendEquationEXT(OpenTK.Graphics.ES11.All mode);
|
internal delegate void BlendEquationEXT(OpenTK.Graphics.ES11.BlendEquationModeExt mode);
|
||||||
internal static BlendEquationEXT glBlendEquationEXT;
|
internal static BlendEquationEXT glBlendEquationEXT;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void BlendEquationOES(OpenTK.Graphics.ES11.All mode);
|
internal delegate void BlendEquationOES(OpenTK.Graphics.ES11.All mode);
|
||||||
|
|
|
@ -110,6 +110,10 @@ namespace OpenTK.Graphics.ES11
|
||||||
/// </summary>
|
/// </summary>
|
||||||
CurrentBit = ((int)0x00000001) ,
|
CurrentBit = ((int)0x00000001) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_PASS_EVENT_BIT_AMD = 0x00000001
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthPassEventBitAmd = ((int)0x00000001) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_SYNC_FLUSH_COMMANDS_BIT_APPLE = 0x00000001
|
/// Original was GL_SYNC_FLUSH_COMMANDS_BIT_APPLE = 0x00000001
|
||||||
/// </summary>
|
/// </summary>
|
||||||
SyncFlushCommandsBitApple = ((int)0x00000001) ,
|
SyncFlushCommandsBitApple = ((int)0x00000001) ,
|
||||||
|
@ -170,6 +174,10 @@ namespace OpenTK.Graphics.ES11
|
||||||
/// </summary>
|
/// </summary>
|
||||||
PointBit = ((int)0x00000002) ,
|
PointBit = ((int)0x00000002) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_FAIL_EVENT_BIT_AMD = 0x00000002
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthFailEventBitAmd = ((int)0x00000002) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_COLOR_BUFFER_BIT2_QCOM = 0x00000004
|
/// Original was GL_COLOR_BUFFER_BIT2_QCOM = 0x00000004
|
||||||
/// </summary>
|
/// </summary>
|
||||||
ColorBufferBit2Qcom = ((int)0x00000004) ,
|
ColorBufferBit2Qcom = ((int)0x00000004) ,
|
||||||
|
@ -186,6 +194,10 @@ namespace OpenTK.Graphics.ES11
|
||||||
/// </summary>
|
/// </summary>
|
||||||
LineBit = ((int)0x00000004) ,
|
LineBit = ((int)0x00000004) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_STENCIL_FAIL_EVENT_BIT_AMD = 0x00000004
|
||||||
|
/// </summary>
|
||||||
|
QueryStencilFailEventBitAmd = ((int)0x00000004) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_UNIFORM_BARRIER_BIT = 0x00000004
|
/// Original was GL_UNIFORM_BARRIER_BIT = 0x00000004
|
||||||
/// </summary>
|
/// </summary>
|
||||||
UniformBarrierBit = ((int)0x00000004) ,
|
UniformBarrierBit = ((int)0x00000004) ,
|
||||||
|
@ -202,6 +214,10 @@ namespace OpenTK.Graphics.ES11
|
||||||
/// </summary>
|
/// </summary>
|
||||||
PolygonBit = ((int)0x00000008) ,
|
PolygonBit = ((int)0x00000008) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_BOUNDS_FAIL_EVENT_BIT_AMD = 0x00000008
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthBoundsFailEventBitAmd = ((int)0x00000008) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_TESS_CONTROL_SHADER_BIT = 0x00000008
|
/// Original was GL_TESS_CONTROL_SHADER_BIT = 0x00000008
|
||||||
/// </summary>
|
/// </summary>
|
||||||
TessControlShaderBit = ((int)0x00000008) ,
|
TessControlShaderBit = ((int)0x00000008) ,
|
||||||
|
@ -5834,6 +5850,10 @@ namespace OpenTK.Graphics.ES11
|
||||||
/// </summary>
|
/// </summary>
|
||||||
ClientAllAttribBits = unchecked((int)0xFFFFFFFF) ,
|
ClientAllAttribBits = unchecked((int)0xFFFFFFFF) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_ALL_EVENT_BITS_AMD = 0xFFFFFFFF
|
||||||
|
/// </summary>
|
||||||
|
QueryAllEventBitsAmd = unchecked((int)0xFFFFFFFF) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_TIMEOUT_IGNORED_APPLE = 0xFFFFFFFFFFFFFFFF
|
/// Original was GL_TIMEOUT_IGNORED_APPLE = 0xFFFFFFFFFFFFFFFF
|
||||||
/// </summary>
|
/// </summary>
|
||||||
TimeoutIgnoredApple = unchecked((int)0xFFFFFFFFFFFFFFFF) ,
|
TimeoutIgnoredApple = unchecked((int)0xFFFFFFFFFFFFFFFF) ,
|
||||||
|
@ -6455,7 +6475,7 @@ namespace OpenTK.Graphics.ES11
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Not used directly.
|
/// Used in GL.Ext.BlendEquation
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum BlendEquationModeExt : int
|
public enum BlendEquationModeExt : int
|
||||||
{
|
{
|
||||||
|
@ -8156,6 +8176,21 @@ namespace OpenTK.Graphics.ES11
|
||||||
TextureDeformationSgix = ((int)0x8195) ,
|
TextureDeformationSgix = ((int)0x8195) ,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Not used directly.
|
||||||
|
/// </summary>
|
||||||
|
public enum FogCoordinatePointerType : int
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_FLOAT = 0x1406
|
||||||
|
/// </summary>
|
||||||
|
Float = ((int)0x1406) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_DOUBLE = 0x140A
|
||||||
|
/// </summary>
|
||||||
|
Double = ((int)0x140A) ,
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Not used directly.
|
/// Not used directly.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -8214,6 +8249,36 @@ namespace OpenTK.Graphics.ES11
|
||||||
FogOffsetValueSgix = ((int)0x8199) ,
|
FogOffsetValueSgix = ((int)0x8199) ,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Not used directly.
|
||||||
|
/// </summary>
|
||||||
|
public enum FogPointerTypeExt : int
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_FLOAT = 0x1406
|
||||||
|
/// </summary>
|
||||||
|
Float = ((int)0x1406) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_DOUBLE = 0x140A
|
||||||
|
/// </summary>
|
||||||
|
Double = ((int)0x140A) ,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Not used directly.
|
||||||
|
/// </summary>
|
||||||
|
public enum FogPointerTypeIbm : int
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_FLOAT = 0x1406
|
||||||
|
/// </summary>
|
||||||
|
Float = ((int)0x1406) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_DOUBLE = 0x140A
|
||||||
|
/// </summary>
|
||||||
|
Double = ((int)0x140A) ,
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Not used directly.
|
/// Not used directly.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -11987,6 +12052,34 @@ namespace OpenTK.Graphics.ES11
|
||||||
FenceConditionNv = ((int)0x84F4) ,
|
FenceConditionNv = ((int)0x84F4) ,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Not used directly.
|
||||||
|
/// </summary>
|
||||||
|
[Flags]
|
||||||
|
public enum OcclusionQueryEventMaskAmd : int
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_PASS_EVENT_BIT_AMD = 0x00000001
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthPassEventBitAmd = ((int)0x00000001) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_FAIL_EVENT_BIT_AMD = 0x00000002
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthFailEventBitAmd = ((int)0x00000002) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_STENCIL_FAIL_EVENT_BIT_AMD = 0x00000004
|
||||||
|
/// </summary>
|
||||||
|
QueryStencilFailEventBitAmd = ((int)0x00000004) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_BOUNDS_FAIL_EVENT_BIT_AMD = 0x00000008
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthBoundsFailEventBitAmd = ((int)0x00000008) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_ALL_EVENT_BITS_AMD = 0xFFFFFFFF
|
||||||
|
/// </summary>
|
||||||
|
QueryAllEventBitsAmd = unchecked((int)0xFFFFFFFF) ,
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Not used directly.
|
/// Not used directly.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -2233,6 +2233,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// The timeout, specified in nanoseconds, for which the implementation should wait for sync to become signaled.
|
/// The timeout, specified in nanoseconds, for which the implementation should wait for sync to become signaled.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")]
|
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")]
|
||||||
public static
|
public static
|
||||||
OpenTK.Graphics.ES20.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES20.All flags, Int64 timeout)
|
OpenTK.Graphics.ES20.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES20.All flags, Int64 timeout)
|
||||||
|
@ -3047,6 +3048,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Specifies the timeout that the server should wait before continuing. timeout must be GL_TIMEOUT_IGNORED.
|
/// Specifies the timeout that the server should wait before continuing. timeout must be GL_TIMEOUT_IGNORED.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")]
|
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")]
|
||||||
public static
|
public static
|
||||||
void WaitSync(IntPtr sync, OpenTK.Graphics.ES20.All flags, Int64 timeout)
|
void WaitSync(IntPtr sync, OpenTK.Graphics.ES20.All flags, Int64 timeout)
|
||||||
|
@ -3340,6 +3342,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Specifies the name of a buffer object.
|
/// Specifies the name of a buffer object.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindBuffer")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindBuffer")]
|
||||||
public static
|
public static
|
||||||
void BindBuffer(OpenTK.Graphics.ES20.All target, Int32 buffer)
|
void BindBuffer(OpenTK.Graphics.ES20.All target, Int32 buffer)
|
||||||
|
@ -3451,6 +3454,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Specifies the name of the framebuffer object to bind.
|
/// Specifies the name of the framebuffer object to bind.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindFramebuffer")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindFramebuffer")]
|
||||||
public static
|
public static
|
||||||
void BindFramebuffer(OpenTK.Graphics.ES20.All target, Int32 framebuffer)
|
void BindFramebuffer(OpenTK.Graphics.ES20.All target, Int32 framebuffer)
|
||||||
|
@ -3562,6 +3566,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Specifies the name of the renderbuffer object to bind.
|
/// Specifies the name of the renderbuffer object to bind.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindRenderbuffer")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindRenderbuffer")]
|
||||||
public static
|
public static
|
||||||
void BindRenderbuffer(OpenTK.Graphics.ES20.All target, Int32 renderbuffer)
|
void BindRenderbuffer(OpenTK.Graphics.ES20.All target, Int32 renderbuffer)
|
||||||
|
@ -3673,6 +3678,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Specifies the name of a texture.
|
/// Specifies the name of a texture.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindTexture")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindTexture")]
|
||||||
public static
|
public static
|
||||||
void BindTexture(OpenTK.Graphics.ES20.All target, Int32 texture)
|
void BindTexture(OpenTK.Graphics.ES20.All target, Int32 texture)
|
||||||
|
@ -8071,6 +8077,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
|
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")]
|
||||||
public static
|
public static
|
||||||
void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, Int32[] ids, bool enabled)
|
void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, Int32[] ids, bool enabled)
|
||||||
|
@ -8124,6 +8131,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
|
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")]
|
||||||
public static
|
public static
|
||||||
void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, ref Int32 ids, bool enabled)
|
void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, ref Int32 ids, bool enabled)
|
||||||
|
@ -8177,6 +8185,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
|
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")]
|
||||||
public static
|
public static
|
||||||
|
@ -8694,6 +8703,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// The address of a character array containing the message to insert.
|
/// The address of a character array containing the message to insert.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")]
|
||||||
public static
|
public static
|
||||||
void DebugMessageInsert(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, Int32 id, OpenTK.Graphics.ES20.All severity, Int32 length, String buf)
|
void DebugMessageInsert(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, Int32 id, OpenTK.Graphics.ES20.All severity, Int32 length, String buf)
|
||||||
|
@ -11104,6 +11114,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Specifies the name of an existing renderbuffer object of type renderbuffertarget to attach.
|
/// Specifies the name of an existing renderbuffer object of type renderbuffertarget to attach.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")]
|
||||||
public static
|
public static
|
||||||
void FramebufferRenderbuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All renderbuffertarget, Int32 renderbuffer)
|
void FramebufferRenderbuffer(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All renderbuffertarget, Int32 renderbuffer)
|
||||||
|
@ -11310,6 +11321,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>[requires: v2.0 and ES_VERSION_2_0]</summary>
|
/// <summary>[requires: v2.0 and ES_VERSION_2_0]</summary>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")]
|
||||||
public static
|
public static
|
||||||
void FramebufferTexture2D(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, Int32 texture, Int32 level)
|
void FramebufferTexture2D(OpenTK.Graphics.ES20.All target, OpenTK.Graphics.ES20.All attachment, OpenTK.Graphics.ES20.All textarget, Int32 texture, Int32 level)
|
||||||
|
@ -12533,6 +12545,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Returns a null terminated string containing the name of the attribute variable.
|
/// Returns a null terminated string containing the name of the attribute variable.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")]
|
||||||
public static
|
public static
|
||||||
void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.ES20.All type, [OutAttribute] StringBuilder name)
|
void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.ES20.All type, [OutAttribute] StringBuilder name)
|
||||||
|
@ -12649,6 +12662,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Returns a null terminated string containing the name of the attribute variable.
|
/// Returns a null terminated string containing the name of the attribute variable.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")]
|
||||||
public static
|
public static
|
||||||
|
@ -13001,6 +13015,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Returns a null terminated string containing the name of the uniform variable.
|
/// Returns a null terminated string containing the name of the uniform variable.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")]
|
||||||
public static
|
public static
|
||||||
void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.ES20.All type, [OutAttribute] StringBuilder name)
|
void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.ES20.All type, [OutAttribute] StringBuilder name)
|
||||||
|
@ -13117,6 +13132,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Returns a null terminated string containing the name of the uniform variable.
|
/// Returns a null terminated string containing the name of the uniform variable.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")]
|
||||||
public static
|
public static
|
||||||
|
@ -14113,6 +14129,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// The address of an array of characters that will receive the messages.
|
/// The address of an array of characters that will receive the messages.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")]
|
||||||
public static
|
public static
|
||||||
Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES20.All[] sources, [OutAttribute] OpenTK.Graphics.ES20.All[] types, [OutAttribute] Int32[] ids, [OutAttribute] OpenTK.Graphics.ES20.All[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog)
|
Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES20.All[] sources, [OutAttribute] OpenTK.Graphics.ES20.All[] types, [OutAttribute] Int32[] ids, [OutAttribute] OpenTK.Graphics.ES20.All[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog)
|
||||||
|
@ -14180,6 +14197,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// The address of an array of characters that will receive the messages.
|
/// The address of an array of characters that will receive the messages.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")]
|
||||||
public static
|
public static
|
||||||
Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.ES20.All sources, [OutAttribute] out OpenTK.Graphics.ES20.All types, [OutAttribute] out Int32 ids, [OutAttribute] out OpenTK.Graphics.ES20.All severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog)
|
Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.ES20.All sources, [OutAttribute] out OpenTK.Graphics.ES20.All types, [OutAttribute] out Int32 ids, [OutAttribute] out OpenTK.Graphics.ES20.All severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog)
|
||||||
|
@ -14253,6 +14271,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// The address of an array of characters that will receive the messages.
|
/// The address of an array of characters that will receive the messages.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")]
|
||||||
public static
|
public static
|
||||||
|
@ -15616,6 +15635,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// The address of a string that will receive the object label.
|
/// The address of a string that will receive the object label.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")]
|
||||||
public static
|
public static
|
||||||
void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label)
|
void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label)
|
||||||
|
@ -15664,6 +15684,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// The address of a string that will receive the object label.
|
/// The address of a string that will receive the object label.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")]
|
||||||
public static
|
public static
|
||||||
void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label)
|
void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label)
|
||||||
|
@ -15713,6 +15734,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// The address of a string that will receive the object label.
|
/// The address of a string that will receive the object label.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")]
|
||||||
public static
|
public static
|
||||||
|
@ -17423,6 +17445,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Returns the requested object parameter.
|
/// Returns the requested object parameter.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")]
|
||||||
public static
|
public static
|
||||||
void GetProgram(Int32 program, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params)
|
void GetProgram(Int32 program, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params)
|
||||||
|
@ -17461,6 +17484,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Returns the requested object parameter.
|
/// Returns the requested object parameter.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")]
|
||||||
public static
|
public static
|
||||||
void GetProgram(Int32 program, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params)
|
void GetProgram(Int32 program, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params)
|
||||||
|
@ -17500,6 +17524,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Returns the requested object parameter.
|
/// Returns the requested object parameter.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")]
|
||||||
public static
|
public static
|
||||||
|
@ -18486,6 +18511,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Returns the requested object parameter.
|
/// Returns the requested object parameter.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")]
|
||||||
public static
|
public static
|
||||||
void GetShader(Int32 shader, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params)
|
void GetShader(Int32 shader, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params)
|
||||||
|
@ -18524,6 +18550,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Returns the requested object parameter.
|
/// Returns the requested object parameter.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")]
|
||||||
public static
|
public static
|
||||||
void GetShader(Int32 shader, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params)
|
void GetShader(Int32 shader, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params)
|
||||||
|
@ -18563,6 +18590,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Returns the requested object parameter.
|
/// Returns the requested object parameter.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")]
|
||||||
public static
|
public static
|
||||||
|
@ -20583,6 +20611,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Returns the requested data.
|
/// Returns the requested data.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")]
|
||||||
public static
|
public static
|
||||||
void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute] Single[] @params)
|
void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute] Single[] @params)
|
||||||
|
@ -20621,6 +20650,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Returns the requested data.
|
/// Returns the requested data.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")]
|
||||||
public static
|
public static
|
||||||
void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Single @params)
|
void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Single @params)
|
||||||
|
@ -20660,6 +20690,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Returns the requested data.
|
/// Returns the requested data.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")]
|
||||||
public static
|
public static
|
||||||
|
@ -21030,6 +21061,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Returns the requested data.
|
/// Returns the requested data.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")]
|
||||||
public static
|
public static
|
||||||
void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params)
|
void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params)
|
||||||
|
@ -21068,6 +21100,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Returns the requested data.
|
/// Returns the requested data.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")]
|
||||||
public static
|
public static
|
||||||
void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params)
|
void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params)
|
||||||
|
@ -21107,6 +21140,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Returns the requested data.
|
/// Returns the requested data.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")]
|
||||||
public static
|
public static
|
||||||
|
@ -21477,6 +21511,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Returns the pointer value.
|
/// Returns the pointer value.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")]
|
||||||
public static
|
public static
|
||||||
void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute] IntPtr pointer)
|
void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES20.All pname, [OutAttribute] IntPtr pointer)
|
||||||
|
@ -21509,6 +21544,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Returns the pointer value.
|
/// Returns the pointer value.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")]
|
||||||
public static
|
public static
|
||||||
void GetVertexAttribPointer<T2>(Int32 index, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T2[] pointer)
|
void GetVertexAttribPointer<T2>(Int32 index, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T2[] pointer)
|
||||||
|
@ -21550,6 +21586,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Returns the pointer value.
|
/// Returns the pointer value.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")]
|
||||||
public static
|
public static
|
||||||
void GetVertexAttribPointer<T2>(Int32 index, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T2[,] pointer)
|
void GetVertexAttribPointer<T2>(Int32 index, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T2[,] pointer)
|
||||||
|
@ -21591,6 +21628,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Returns the pointer value.
|
/// Returns the pointer value.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")]
|
||||||
public static
|
public static
|
||||||
void GetVertexAttribPointer<T2>(Int32 index, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T2[,,] pointer)
|
void GetVertexAttribPointer<T2>(Int32 index, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] T2[,,] pointer)
|
||||||
|
@ -21632,6 +21670,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Returns the pointer value.
|
/// Returns the pointer value.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")]
|
||||||
public static
|
public static
|
||||||
void GetVertexAttribPointer<T2>(Int32 index, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] ref T2 pointer)
|
void GetVertexAttribPointer<T2>(Int32 index, OpenTK.Graphics.ES20.All pname, [InAttribute, OutAttribute] ref T2 pointer)
|
||||||
|
@ -22732,6 +22771,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// The address of a string containing the label to assign to the object.
|
/// The address of a string containing the label to assign to the object.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")]
|
||||||
public static
|
public static
|
||||||
void ObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 length, String label)
|
void ObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 length, String label)
|
||||||
|
@ -23904,6 +23944,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Specifies the length of the array whose address is given in binary.
|
/// Specifies the length of the array whose address is given in binary.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
||||||
public static
|
public static
|
||||||
void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.ES20.All binaryformat, IntPtr binary, Int32 length)
|
void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.ES20.All binaryformat, IntPtr binary, Int32 length)
|
||||||
|
@ -23952,6 +23993,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Specifies the length of the array whose address is given in binary.
|
/// Specifies the length of the array whose address is given in binary.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
||||||
public static
|
public static
|
||||||
void ShaderBinary<T3>(Int32 count, Int32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length)
|
void ShaderBinary<T3>(Int32 count, Int32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length)
|
||||||
|
@ -24009,6 +24051,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Specifies the length of the array whose address is given in binary.
|
/// Specifies the length of the array whose address is given in binary.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
||||||
public static
|
public static
|
||||||
void ShaderBinary<T3>(Int32 count, Int32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length)
|
void ShaderBinary<T3>(Int32 count, Int32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length)
|
||||||
|
@ -24066,6 +24109,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Specifies the length of the array whose address is given in binary.
|
/// Specifies the length of the array whose address is given in binary.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
||||||
public static
|
public static
|
||||||
void ShaderBinary<T3>(Int32 count, Int32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length)
|
void ShaderBinary<T3>(Int32 count, Int32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length)
|
||||||
|
@ -24123,6 +24167,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Specifies the length of the array whose address is given in binary.
|
/// Specifies the length of the array whose address is given in binary.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
||||||
public static
|
public static
|
||||||
void ShaderBinary<T3>(Int32 count, Int32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length)
|
void ShaderBinary<T3>(Int32 count, Int32[] shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length)
|
||||||
|
@ -24458,6 +24503,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Specifies the length of the array whose address is given in binary.
|
/// Specifies the length of the array whose address is given in binary.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
||||||
public static
|
public static
|
||||||
void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES20.All binaryformat, IntPtr binary, Int32 length)
|
void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES20.All binaryformat, IntPtr binary, Int32 length)
|
||||||
|
@ -24506,6 +24552,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Specifies the length of the array whose address is given in binary.
|
/// Specifies the length of the array whose address is given in binary.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
||||||
public static
|
public static
|
||||||
void ShaderBinary<T3>(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length)
|
void ShaderBinary<T3>(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length)
|
||||||
|
@ -24563,6 +24610,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Specifies the length of the array whose address is given in binary.
|
/// Specifies the length of the array whose address is given in binary.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
||||||
public static
|
public static
|
||||||
void ShaderBinary<T3>(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length)
|
void ShaderBinary<T3>(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length)
|
||||||
|
@ -24620,6 +24668,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Specifies the length of the array whose address is given in binary.
|
/// Specifies the length of the array whose address is given in binary.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
||||||
public static
|
public static
|
||||||
void ShaderBinary<T3>(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length)
|
void ShaderBinary<T3>(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length)
|
||||||
|
@ -24677,6 +24726,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Specifies the length of the array whose address is given in binary.
|
/// Specifies the length of the array whose address is given in binary.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
||||||
public static
|
public static
|
||||||
void ShaderBinary<T3>(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length)
|
void ShaderBinary<T3>(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES20.All binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length)
|
||||||
|
@ -25012,6 +25062,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Specifies the length of the array whose address is given in binary.
|
/// Specifies the length of the array whose address is given in binary.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
||||||
public static
|
public static
|
||||||
|
@ -25055,6 +25106,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Specifies the length of the array whose address is given in binary.
|
/// Specifies the length of the array whose address is given in binary.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
||||||
public static
|
public static
|
||||||
|
@ -25107,6 +25159,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Specifies the length of the array whose address is given in binary.
|
/// Specifies the length of the array whose address is given in binary.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
||||||
public static
|
public static
|
||||||
|
@ -25159,6 +25212,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Specifies the length of the array whose address is given in binary.
|
/// Specifies the length of the array whose address is given in binary.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
||||||
public static
|
public static
|
||||||
|
@ -25211,6 +25265,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Specifies the length of the array whose address is given in binary.
|
/// Specifies the length of the array whose address is given in binary.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
||||||
public static
|
public static
|
||||||
|
@ -27403,6 +27458,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Specifies a mask that is ANDed with both the reference value and the stored stencil value when the test is done. The initial value is all 1's.
|
/// Specifies a mask that is ANDed with both the reference value and the stored stencil value when the test is done. The initial value is all 1's.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFunc")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFunc")]
|
||||||
public static
|
public static
|
||||||
void StencilFunc(OpenTK.Graphics.ES20.All func, Int32 @ref, Int32 mask)
|
void StencilFunc(OpenTK.Graphics.ES20.All func, Int32 @ref, Int32 mask)
|
||||||
|
@ -27539,6 +27595,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Specifies a mask that is ANDed with both the reference value and the stored stencil value when the test is done. The initial value is all 1's.
|
/// Specifies a mask that is ANDed with both the reference value and the stored stencil value when the test is done. The initial value is all 1's.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")]
|
||||||
public static
|
public static
|
||||||
void StencilFuncSeparate(OpenTK.Graphics.ES20.All face, OpenTK.Graphics.ES20.All func, Int32 @ref, Int32 mask)
|
void StencilFuncSeparate(OpenTK.Graphics.ES20.All face, OpenTK.Graphics.ES20.All func, Int32 @ref, Int32 mask)
|
||||||
|
@ -27802,6 +27859,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Specifies a bit mask to enable and disable writing of individual bits in the stencil planes. Initially, the mask is all 1's.
|
/// Specifies a bit mask to enable and disable writing of individual bits in the stencil planes. Initially, the mask is all 1's.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")]
|
||||||
public static
|
public static
|
||||||
void StencilMaskSeparate(OpenTK.Graphics.ES20.All face, Int32 mask)
|
void StencilMaskSeparate(OpenTK.Graphics.ES20.All face, Int32 mask)
|
||||||
|
@ -34054,6 +34112,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0.
|
/// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")]
|
||||||
public static
|
public static
|
||||||
void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, IntPtr pointer)
|
void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, IntPtr pointer)
|
||||||
|
@ -34101,6 +34160,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0.
|
/// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")]
|
||||||
public static
|
public static
|
||||||
void VertexAttribPointer<T5>(Int32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[] pointer)
|
void VertexAttribPointer<T5>(Int32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[] pointer)
|
||||||
|
@ -34157,6 +34217,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0.
|
/// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")]
|
||||||
public static
|
public static
|
||||||
void VertexAttribPointer<T5>(Int32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,] pointer)
|
void VertexAttribPointer<T5>(Int32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,] pointer)
|
||||||
|
@ -34213,6 +34274,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0.
|
/// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")]
|
||||||
public static
|
public static
|
||||||
void VertexAttribPointer<T5>(Int32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,,] pointer)
|
void VertexAttribPointer<T5>(Int32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,,] pointer)
|
||||||
|
@ -34269,6 +34331,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0.
|
/// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")]
|
||||||
public static
|
public static
|
||||||
void VertexAttribPointer<T5>(Int32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute] ref T5 pointer)
|
void VertexAttribPointer<T5>(Int32 index, Int32 size, OpenTK.Graphics.ES20.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute] ref T5 pointer)
|
||||||
|
@ -35252,6 +35315,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Specifies the name of a query object.
|
/// Specifies the name of a query object.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glBeginQueryEXT")]
|
[AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glBeginQueryEXT")]
|
||||||
public static
|
public static
|
||||||
void BeginQuery(OpenTK.Graphics.ES20.All target, Int32 id)
|
void BeginQuery(OpenTK.Graphics.ES20.All target, Int32 id)
|
||||||
|
@ -37430,6 +37494,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>[requires: EXT_multiview_draw_buffers]</summary>
|
/// <summary>[requires: EXT_multiview_draw_buffers]</summary>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")]
|
[AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")]
|
||||||
public static
|
public static
|
||||||
void GetInteger(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute] Int32[] data)
|
void GetInteger(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute] Int32[] data)
|
||||||
|
@ -37451,6 +37516,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>[requires: EXT_multiview_draw_buffers]</summary>
|
/// <summary>[requires: EXT_multiview_draw_buffers]</summary>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")]
|
[AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")]
|
||||||
public static
|
public static
|
||||||
void GetInteger(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute] out Int32 data)
|
void GetInteger(OpenTK.Graphics.ES20.All target, Int32 index, [OutAttribute] out Int32 data)
|
||||||
|
@ -37473,6 +37539,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>[requires: EXT_multiview_draw_buffers]</summary>
|
/// <summary>[requires: EXT_multiview_draw_buffers]</summary>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")]
|
[AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")]
|
||||||
public static
|
public static
|
||||||
|
@ -38807,6 +38874,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data.
|
/// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")]
|
[AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")]
|
||||||
public static
|
public static
|
||||||
void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int64[] @params)
|
void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int64[] @params)
|
||||||
|
@ -38845,6 +38913,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data.
|
/// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")]
|
[AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")]
|
||||||
public static
|
public static
|
||||||
void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int64 @params)
|
void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int64 @params)
|
||||||
|
@ -38884,6 +38953,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data.
|
/// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")]
|
[AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")]
|
||||||
public static
|
public static
|
||||||
|
@ -39254,6 +39324,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data.
|
/// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")]
|
[AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")]
|
||||||
public static
|
public static
|
||||||
void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params)
|
void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] Int32[] @params)
|
||||||
|
@ -39292,6 +39363,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data.
|
/// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")]
|
[AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")]
|
||||||
public static
|
public static
|
||||||
void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params)
|
void GetQueryObject(Int32 id, OpenTK.Graphics.ES20.All pname, [OutAttribute] out Int32 @params)
|
||||||
|
@ -39331,6 +39403,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data.
|
/// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")]
|
[AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")]
|
||||||
public static
|
public static
|
||||||
|
@ -40296,6 +40369,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Specifies a combination of access flags indicating the desired access to the range.
|
/// Specifies a combination of access flags indicating the desired access to the range.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")]
|
[AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")]
|
||||||
public static
|
public static
|
||||||
IntPtr MapBufferRange(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr length, Int32 access)
|
IntPtr MapBufferRange(OpenTK.Graphics.ES20.All target, IntPtr offset, IntPtr length, Int32 access)
|
||||||
|
@ -42339,6 +42413,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Specifies the new value of the parameter specified by pname for program.
|
/// Specifies the new value of the parameter specified by pname for program.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")]
|
[AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")]
|
||||||
public static
|
public static
|
||||||
void ProgramParameter(Int32 program, OpenTK.Graphics.ES20.All pname, Int32 value)
|
void ProgramParameter(Int32 program, OpenTK.Graphics.ES20.All pname, Int32 value)
|
||||||
|
@ -48814,6 +48889,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
|
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")]
|
||||||
public static
|
public static
|
||||||
void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, Int32[] ids, bool enabled)
|
void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, Int32[] ids, bool enabled)
|
||||||
|
@ -48867,6 +48943,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
|
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")]
|
||||||
public static
|
public static
|
||||||
void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, ref Int32 ids, bool enabled)
|
void DebugMessageControl(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, OpenTK.Graphics.ES20.All severity, Int32 count, ref Int32 ids, bool enabled)
|
||||||
|
@ -48920,6 +48997,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
|
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")]
|
||||||
public static
|
public static
|
||||||
|
@ -49437,6 +49515,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// The address of a character array containing the message to insert.
|
/// The address of a character array containing the message to insert.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")]
|
||||||
public static
|
public static
|
||||||
void DebugMessageInsert(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, Int32 id, OpenTK.Graphics.ES20.All severity, Int32 length, String buf)
|
void DebugMessageInsert(OpenTK.Graphics.ES20.All source, OpenTK.Graphics.ES20.All type, Int32 id, OpenTK.Graphics.ES20.All severity, Int32 length, String buf)
|
||||||
|
@ -49638,6 +49717,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// The address of an array of characters that will receive the messages.
|
/// The address of an array of characters that will receive the messages.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")]
|
||||||
public static
|
public static
|
||||||
Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES20.All[] sources, [OutAttribute] OpenTK.Graphics.ES20.All[] types, [OutAttribute] Int32[] ids, [OutAttribute] OpenTK.Graphics.ES20.All[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog)
|
Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES20.All[] sources, [OutAttribute] OpenTK.Graphics.ES20.All[] types, [OutAttribute] Int32[] ids, [OutAttribute] OpenTK.Graphics.ES20.All[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog)
|
||||||
|
@ -49705,6 +49785,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// The address of an array of characters that will receive the messages.
|
/// The address of an array of characters that will receive the messages.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")]
|
||||||
public static
|
public static
|
||||||
Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.ES20.All sources, [OutAttribute] out OpenTK.Graphics.ES20.All types, [OutAttribute] out Int32 ids, [OutAttribute] out OpenTK.Graphics.ES20.All severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog)
|
Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.ES20.All sources, [OutAttribute] out OpenTK.Graphics.ES20.All types, [OutAttribute] out Int32 ids, [OutAttribute] out OpenTK.Graphics.ES20.All severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog)
|
||||||
|
@ -49778,6 +49859,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// The address of an array of characters that will receive the messages.
|
/// The address of an array of characters that will receive the messages.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")]
|
||||||
public static
|
public static
|
||||||
|
@ -50422,6 +50504,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// The address of a string that will receive the object label.
|
/// The address of a string that will receive the object label.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")]
|
||||||
public static
|
public static
|
||||||
void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label)
|
void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label)
|
||||||
|
@ -50470,6 +50553,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// The address of a string that will receive the object label.
|
/// The address of a string that will receive the object label.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")]
|
||||||
public static
|
public static
|
||||||
void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label)
|
void GetObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label)
|
||||||
|
@ -50519,6 +50603,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// The address of a string that will receive the object label.
|
/// The address of a string that will receive the object label.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")]
|
||||||
public static
|
public static
|
||||||
|
@ -51832,6 +51917,7 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// The address of a string containing the label to assign to the object.
|
/// The address of a string containing the label to assign to the object.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")]
|
||||||
public static
|
public static
|
||||||
void ObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 length, String label)
|
void ObjectLabel(OpenTK.Graphics.ES20.All identifier, Int32 name, Int32 length, String label)
|
||||||
|
|
|
@ -220,6 +220,10 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// </summary>
|
/// </summary>
|
||||||
CurrentBit = ((int)0x00000001) ,
|
CurrentBit = ((int)0x00000001) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_PASS_EVENT_BIT_AMD = 0x00000001
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthPassEventBitAmd = ((int)0x00000001) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_SYNC_FLUSH_COMMANDS_BIT_APPLE = 0x00000001
|
/// Original was GL_SYNC_FLUSH_COMMANDS_BIT_APPLE = 0x00000001
|
||||||
/// </summary>
|
/// </summary>
|
||||||
SyncFlushCommandsBitApple = ((int)0x00000001) ,
|
SyncFlushCommandsBitApple = ((int)0x00000001) ,
|
||||||
|
@ -280,6 +284,10 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// </summary>
|
/// </summary>
|
||||||
PointBit = ((int)0x00000002) ,
|
PointBit = ((int)0x00000002) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_FAIL_EVENT_BIT_AMD = 0x00000002
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthFailEventBitAmd = ((int)0x00000002) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_COLOR_BUFFER_BIT2_QCOM = 0x00000004
|
/// Original was GL_COLOR_BUFFER_BIT2_QCOM = 0x00000004
|
||||||
/// </summary>
|
/// </summary>
|
||||||
ColorBufferBit2Qcom = ((int)0x00000004) ,
|
ColorBufferBit2Qcom = ((int)0x00000004) ,
|
||||||
|
@ -296,6 +304,10 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// </summary>
|
/// </summary>
|
||||||
LineBit = ((int)0x00000004) ,
|
LineBit = ((int)0x00000004) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_STENCIL_FAIL_EVENT_BIT_AMD = 0x00000004
|
||||||
|
/// </summary>
|
||||||
|
QueryStencilFailEventBitAmd = ((int)0x00000004) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_UNIFORM_BARRIER_BIT = 0x00000004
|
/// Original was GL_UNIFORM_BARRIER_BIT = 0x00000004
|
||||||
/// </summary>
|
/// </summary>
|
||||||
UniformBarrierBit = ((int)0x00000004) ,
|
UniformBarrierBit = ((int)0x00000004) ,
|
||||||
|
@ -312,6 +324,10 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// </summary>
|
/// </summary>
|
||||||
PolygonBit = ((int)0x00000008) ,
|
PolygonBit = ((int)0x00000008) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_BOUNDS_FAIL_EVENT_BIT_AMD = 0x00000008
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthBoundsFailEventBitAmd = ((int)0x00000008) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_TESS_CONTROL_SHADER_BIT = 0x00000008
|
/// Original was GL_TESS_CONTROL_SHADER_BIT = 0x00000008
|
||||||
/// </summary>
|
/// </summary>
|
||||||
TessControlShaderBit = ((int)0x00000008) ,
|
TessControlShaderBit = ((int)0x00000008) ,
|
||||||
|
@ -7200,6 +7216,46 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// </summary>
|
/// </summary>
|
||||||
CompressedRgbaAstc12X12Khr = ((int)0x93BD) ,
|
CompressedRgbaAstc12X12Khr = ((int)0x93BD) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_3x3x3_OES = 0x93C0
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc3X3x3Oes = ((int)0x93C0) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_4x3x3_OES = 0x93C1
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc4X3x3Oes = ((int)0x93C1) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_4x4x3_OES = 0x93C2
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc4X4x3Oes = ((int)0x93C2) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_4x4x4_OES = 0x93C3
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc4X4x4Oes = ((int)0x93C3) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_5x4x4_OES = 0x93C4
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc5X4x4Oes = ((int)0x93C4) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_5x5x4_OES = 0x93C5
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc5X5x4Oes = ((int)0x93C5) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_5x5x5_OES = 0x93C6
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc5X5x5Oes = ((int)0x93C6) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_6x5x5_OES = 0x93C7
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc6X5x5Oes = ((int)0x93C7) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_6x6x5_OES = 0x93C8
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc6X6x5Oes = ((int)0x93C8) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_6x6x6_OES = 0x93C9
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc6X6x6Oes = ((int)0x93C9) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR = 0x93D0
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR = 0x93D0
|
||||||
/// </summary>
|
/// </summary>
|
||||||
CompressedSrgb8Alpha8Astc4X4Khr = ((int)0x93D0) ,
|
CompressedSrgb8Alpha8Astc4X4Khr = ((int)0x93D0) ,
|
||||||
|
@ -7256,6 +7312,46 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// </summary>
|
/// </summary>
|
||||||
CompressedSrgb8Alpha8Astc12X12Khr = ((int)0x93DD) ,
|
CompressedSrgb8Alpha8Astc12X12Khr = ((int)0x93DD) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_3x3x3_OES = 0x93E0
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc3X3x3Oes = ((int)0x93E0) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x3x3_OES = 0x93E1
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc4X3x3Oes = ((int)0x93E1) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4x3_OES = 0x93E2
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc4X4x3Oes = ((int)0x93E2) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4x4_OES = 0x93E3
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc4X4x4Oes = ((int)0x93E3) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4x4_OES = 0x93E4
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc5X4x4Oes = ((int)0x93E4) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5x4_OES = 0x93E5
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc5X5x4Oes = ((int)0x93E5) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5x5_OES = 0x93E6
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc5X5x5Oes = ((int)0x93E6) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5x5_OES = 0x93E7
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc6X5x5Oes = ((int)0x93E7) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6x5_OES = 0x93E8
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc6X6x5Oes = ((int)0x93E8) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6x6_OES = 0x93E9
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc6X6x6Oes = ((int)0x93E9) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_ALL_ATTRIB_BITS = 0xFFFFFFFF
|
/// Original was GL_ALL_ATTRIB_BITS = 0xFFFFFFFF
|
||||||
/// </summary>
|
/// </summary>
|
||||||
AllAttribBits = unchecked((int)0xFFFFFFFF) ,
|
AllAttribBits = unchecked((int)0xFFFFFFFF) ,
|
||||||
|
@ -7280,6 +7376,10 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// </summary>
|
/// </summary>
|
||||||
ClientAllAttribBits = unchecked((int)0xFFFFFFFF) ,
|
ClientAllAttribBits = unchecked((int)0xFFFFFFFF) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_ALL_EVENT_BITS_AMD = 0xFFFFFFFF
|
||||||
|
/// </summary>
|
||||||
|
QueryAllEventBitsAmd = unchecked((int)0xFFFFFFFF) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_TIMEOUT_IGNORED_APPLE = 0xFFFFFFFFFFFFFFFF
|
/// Original was GL_TIMEOUT_IGNORED_APPLE = 0xFFFFFFFFFFFFFFFF
|
||||||
/// </summary>
|
/// </summary>
|
||||||
TimeoutIgnoredApple = unchecked((int)0xFFFFFFFFFFFFFFFF) ,
|
TimeoutIgnoredApple = unchecked((int)0xFFFFFFFFFFFFFFFF) ,
|
||||||
|
@ -11713,6 +11813,21 @@ namespace OpenTK.Graphics.ES20
|
||||||
GccsoShaderBinaryFj = ((int)0x9260) ,
|
GccsoShaderBinaryFj = ((int)0x9260) ,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Not used directly.
|
||||||
|
/// </summary>
|
||||||
|
public enum FogCoordinatePointerType : int
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_FLOAT = 0x1406
|
||||||
|
/// </summary>
|
||||||
|
Float = ((int)0x1406) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_DOUBLE = 0x140A
|
||||||
|
/// </summary>
|
||||||
|
Double = ((int)0x140A) ,
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Not used directly.
|
/// Not used directly.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -11771,6 +11886,36 @@ namespace OpenTK.Graphics.ES20
|
||||||
FogOffsetValueSgix = ((int)0x8199) ,
|
FogOffsetValueSgix = ((int)0x8199) ,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Not used directly.
|
||||||
|
/// </summary>
|
||||||
|
public enum FogPointerTypeExt : int
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_FLOAT = 0x1406
|
||||||
|
/// </summary>
|
||||||
|
Float = ((int)0x1406) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_DOUBLE = 0x140A
|
||||||
|
/// </summary>
|
||||||
|
Double = ((int)0x140A) ,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Not used directly.
|
||||||
|
/// </summary>
|
||||||
|
public enum FogPointerTypeIbm : int
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_FLOAT = 0x1406
|
||||||
|
/// </summary>
|
||||||
|
Float = ((int)0x1406) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_DOUBLE = 0x140A
|
||||||
|
/// </summary>
|
||||||
|
Double = ((int)0x140A) ,
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Not used directly.
|
/// Not used directly.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -16319,10 +16464,6 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Zero = ((int)0) ,
|
Zero = ((int)0) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Original was GL_XOR = 0x1506
|
|
||||||
/// </summary>
|
|
||||||
Xor = ((int)0x1506) ,
|
|
||||||
/// <summary>
|
|
||||||
/// Original was GL_XOR_NV = 0x1506
|
/// Original was GL_XOR_NV = 0x1506
|
||||||
/// </summary>
|
/// </summary>
|
||||||
XorNv = ((int)0x1506) ,
|
XorNv = ((int)0x1506) ,
|
||||||
|
@ -16331,26 +16472,14 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Invert = ((int)0x150A) ,
|
Invert = ((int)0x150A) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Original was GL_RED = 0x1903
|
|
||||||
/// </summary>
|
|
||||||
Red = ((int)0x1903) ,
|
|
||||||
/// <summary>
|
|
||||||
/// Original was GL_RED_NV = 0x1903
|
/// Original was GL_RED_NV = 0x1903
|
||||||
/// </summary>
|
/// </summary>
|
||||||
RedNv = ((int)0x1903) ,
|
RedNv = ((int)0x1903) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Original was GL_GREEN = 0x1904
|
|
||||||
/// </summary>
|
|
||||||
Green = ((int)0x1904) ,
|
|
||||||
/// <summary>
|
|
||||||
/// Original was GL_GREEN_NV = 0x1904
|
/// Original was GL_GREEN_NV = 0x1904
|
||||||
/// </summary>
|
/// </summary>
|
||||||
GreenNv = ((int)0x1904) ,
|
GreenNv = ((int)0x1904) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Original was GL_BLUE = 0x1905
|
|
||||||
/// </summary>
|
|
||||||
Blue = ((int)0x1905) ,
|
|
||||||
/// <summary>
|
|
||||||
/// Original was GL_BLUE_NV = 0x1905
|
/// Original was GL_BLUE_NV = 0x1905
|
||||||
/// </summary>
|
/// </summary>
|
||||||
BlueNv = ((int)0x1905) ,
|
BlueNv = ((int)0x1905) ,
|
||||||
|
@ -17138,6 +17267,34 @@ namespace OpenTK.Graphics.ES20
|
||||||
Renderbuffer = ((int)0X8d41) ,
|
Renderbuffer = ((int)0X8d41) ,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Not used directly.
|
||||||
|
/// </summary>
|
||||||
|
[Flags]
|
||||||
|
public enum OcclusionQueryEventMaskAmd : int
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_PASS_EVENT_BIT_AMD = 0x00000001
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthPassEventBitAmd = ((int)0x00000001) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_FAIL_EVENT_BIT_AMD = 0x00000002
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthFailEventBitAmd = ((int)0x00000002) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_STENCIL_FAIL_EVENT_BIT_AMD = 0x00000004
|
||||||
|
/// </summary>
|
||||||
|
QueryStencilFailEventBitAmd = ((int)0x00000004) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_BOUNDS_FAIL_EVENT_BIT_AMD = 0x00000008
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthBoundsFailEventBitAmd = ((int)0x00000008) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_ALL_EVENT_BITS_AMD = 0xFFFFFFFF
|
||||||
|
/// </summary>
|
||||||
|
QueryAllEventBitsAmd = unchecked((int)0xFFFFFFFF) ,
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Not used directly.
|
/// Not used directly.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -17572,6 +17729,46 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// </summary>
|
/// </summary>
|
||||||
CompressedRgbaAstc12X12Khr = ((int)0x93BD) ,
|
CompressedRgbaAstc12X12Khr = ((int)0x93BD) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_3x3x3_OES = 0x93C0
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc3X3x3Oes = ((int)0x93C0) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_4x3x3_OES = 0x93C1
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc4X3x3Oes = ((int)0x93C1) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_4x4x3_OES = 0x93C2
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc4X4x3Oes = ((int)0x93C2) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_4x4x4_OES = 0x93C3
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc4X4x4Oes = ((int)0x93C3) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_5x4x4_OES = 0x93C4
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc5X4x4Oes = ((int)0x93C4) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_5x5x4_OES = 0x93C5
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc5X5x4Oes = ((int)0x93C5) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_5x5x5_OES = 0x93C6
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc5X5x5Oes = ((int)0x93C6) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_6x5x5_OES = 0x93C7
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc6X5x5Oes = ((int)0x93C7) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_6x6x5_OES = 0x93C8
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc6X6x5Oes = ((int)0x93C8) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_6x6x6_OES = 0x93C9
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc6X6x6Oes = ((int)0x93C9) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR = 0x93D0
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR = 0x93D0
|
||||||
/// </summary>
|
/// </summary>
|
||||||
CompressedSrgb8Alpha8Astc4X4Khr = ((int)0x93D0) ,
|
CompressedSrgb8Alpha8Astc4X4Khr = ((int)0x93D0) ,
|
||||||
|
@ -17627,6 +17824,46 @@ namespace OpenTK.Graphics.ES20
|
||||||
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR = 0x93DD
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR = 0x93DD
|
||||||
/// </summary>
|
/// </summary>
|
||||||
CompressedSrgb8Alpha8Astc12X12Khr = ((int)0x93DD) ,
|
CompressedSrgb8Alpha8Astc12X12Khr = ((int)0x93DD) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_3x3x3_OES = 0x93E0
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc3X3x3Oes = ((int)0x93E0) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x3x3_OES = 0x93E1
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc4X3x3Oes = ((int)0x93E1) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4x3_OES = 0x93E2
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc4X4x3Oes = ((int)0x93E2) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4x4_OES = 0x93E3
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc4X4x4Oes = ((int)0x93E3) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4x4_OES = 0x93E4
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc5X4x4Oes = ((int)0x93E4) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5x4_OES = 0x93E5
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc5X5x4Oes = ((int)0x93E5) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5x5_OES = 0x93E6
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc5X5x5Oes = ((int)0x93E6) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5x5_OES = 0x93E7
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc6X5x5Oes = ((int)0x93E7) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6x5_OES = 0x93E8
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc6X6x5Oes = ((int)0x93E8) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6x6_OES = 0x93E9
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc6X6x6Oes = ((int)0x93E9) ,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
@ -2233,6 +2233,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// The timeout, specified in nanoseconds, for which the implementation should wait for sync to become signaled.
|
/// The timeout, specified in nanoseconds, for which the implementation should wait for sync to become signaled.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")]
|
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glClientWaitSyncAPPLE")]
|
||||||
public static
|
public static
|
||||||
OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, Int64 timeout)
|
OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, Int64 timeout)
|
||||||
|
@ -3047,6 +3048,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the timeout that the server should wait before continuing. timeout must be GL_TIMEOUT_IGNORED.
|
/// Specifies the timeout that the server should wait before continuing. timeout must be GL_TIMEOUT_IGNORED.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")]
|
[AutoGenerated(Category = "APPLE_sync", Version = "", EntryPoint = "glWaitSyncAPPLE")]
|
||||||
public static
|
public static
|
||||||
void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, Int64 timeout)
|
void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, Int64 timeout)
|
||||||
|
@ -3275,6 +3277,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the name of a query object.
|
/// Specifies the name of a query object.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBeginQuery")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBeginQuery")]
|
||||||
public static
|
public static
|
||||||
void BeginQuery(OpenTK.Graphics.ES30.All target, Int32 id)
|
void BeginQuery(OpenTK.Graphics.ES30.All target, Int32 id)
|
||||||
|
@ -3496,6 +3499,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the name of a buffer object.
|
/// Specifies the name of a buffer object.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindBuffer")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindBuffer")]
|
||||||
public static
|
public static
|
||||||
void BindBuffer(OpenTK.Graphics.ES30.All target, Int32 buffer)
|
void BindBuffer(OpenTK.Graphics.ES30.All target, Int32 buffer)
|
||||||
|
@ -3612,6 +3616,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// The name of a buffer object to bind to the specified binding point.
|
/// The name of a buffer object to bind to the specified binding point.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferBase")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferBase")]
|
||||||
public static
|
public static
|
||||||
void BindBufferBase(OpenTK.Graphics.ES30.All target, Int32 index, Int32 buffer)
|
void BindBufferBase(OpenTK.Graphics.ES30.All target, Int32 index, Int32 buffer)
|
||||||
|
@ -3753,6 +3758,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// The amount of data in machine units that can be read from the buffet object while used as an indexed target.
|
/// The amount of data in machine units that can be read from the buffet object while used as an indexed target.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindBufferRange")]
|
||||||
public static
|
public static
|
||||||
void BindBufferRange(OpenTK.Graphics.ES30.All target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size)
|
void BindBufferRange(OpenTK.Graphics.ES30.All target, Int32 index, Int32 buffer, IntPtr offset, IntPtr size)
|
||||||
|
@ -3909,6 +3915,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the name of the framebuffer object to bind.
|
/// Specifies the name of the framebuffer object to bind.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindFramebuffer")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindFramebuffer")]
|
||||||
public static
|
public static
|
||||||
void BindFramebuffer(OpenTK.Graphics.ES30.All target, Int32 framebuffer)
|
void BindFramebuffer(OpenTK.Graphics.ES30.All target, Int32 framebuffer)
|
||||||
|
@ -4020,6 +4027,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the name of the renderbuffer object to bind.
|
/// Specifies the name of the renderbuffer object to bind.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindRenderbuffer")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindRenderbuffer")]
|
||||||
public static
|
public static
|
||||||
void BindRenderbuffer(OpenTK.Graphics.ES30.All target, Int32 renderbuffer)
|
void BindRenderbuffer(OpenTK.Graphics.ES30.All target, Int32 renderbuffer)
|
||||||
|
@ -4186,6 +4194,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the name of a texture.
|
/// Specifies the name of a texture.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindTexture")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glBindTexture")]
|
||||||
public static
|
public static
|
||||||
void BindTexture(OpenTK.Graphics.ES30.All target, Int32 texture)
|
void BindTexture(OpenTK.Graphics.ES30.All target, Int32 texture)
|
||||||
|
@ -4297,6 +4306,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the name of a transform feedback object reserved by glGenTransformFeedbacks.
|
/// Specifies the name of a transform feedback object reserved by glGenTransformFeedbacks.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindTransformFeedback")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glBindTransformFeedback")]
|
||||||
public static
|
public static
|
||||||
void BindTransformFeedback(OpenTK.Graphics.ES30.All target, Int32 id)
|
void BindTransformFeedback(OpenTK.Graphics.ES30.All target, Int32 id)
|
||||||
|
@ -6811,6 +6821,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// The timeout, specified in nanoseconds, for which the implementation should wait for sync to become signaled.
|
/// The timeout, specified in nanoseconds, for which the implementation should wait for sync to become signaled.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClientWaitSync")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glClientWaitSync")]
|
||||||
public static
|
public static
|
||||||
OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, Int64 timeout)
|
OpenTK.Graphics.ES30.WaitSyncStatus ClientWaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, Int64 timeout)
|
||||||
|
@ -10514,6 +10525,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
|
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")]
|
||||||
public static
|
public static
|
||||||
void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, Int32[] ids, bool enabled)
|
void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, Int32[] ids, bool enabled)
|
||||||
|
@ -10567,6 +10579,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
|
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")]
|
||||||
public static
|
public static
|
||||||
void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, ref Int32 ids, bool enabled)
|
void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, ref Int32 ids, bool enabled)
|
||||||
|
@ -10620,6 +10633,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
|
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControl")]
|
||||||
public static
|
public static
|
||||||
|
@ -11137,6 +11151,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// The address of a character array containing the message to insert.
|
/// The address of a character array containing the message to insert.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsert")]
|
||||||
public static
|
public static
|
||||||
void DebugMessageInsert(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, Int32 id, OpenTK.Graphics.ES30.All severity, Int32 length, String buf)
|
void DebugMessageInsert(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, Int32 id, OpenTK.Graphics.ES30.All severity, Int32 length, String buf)
|
||||||
|
@ -14970,6 +14985,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies a pointer to the location where the indices are stored.
|
/// Specifies a pointer to the location where the indices are stored.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")]
|
||||||
public static
|
public static
|
||||||
void DrawRangeElements(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, IntPtr indices)
|
void DrawRangeElements(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, IntPtr indices)
|
||||||
|
@ -15017,6 +15033,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies a pointer to the location where the indices are stored.
|
/// Specifies a pointer to the location where the indices are stored.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")]
|
||||||
public static
|
public static
|
||||||
void DrawRangeElements<T5>(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T5[] indices)
|
void DrawRangeElements<T5>(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T5[] indices)
|
||||||
|
@ -15073,6 +15090,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies a pointer to the location where the indices are stored.
|
/// Specifies a pointer to the location where the indices are stored.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")]
|
||||||
public static
|
public static
|
||||||
void DrawRangeElements<T5>(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T5[,] indices)
|
void DrawRangeElements<T5>(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T5[,] indices)
|
||||||
|
@ -15129,6 +15147,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies a pointer to the location where the indices are stored.
|
/// Specifies a pointer to the location where the indices are stored.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")]
|
||||||
public static
|
public static
|
||||||
void DrawRangeElements<T5>(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T5[,,] indices)
|
void DrawRangeElements<T5>(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] T5[,,] indices)
|
||||||
|
@ -15185,6 +15204,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies a pointer to the location where the indices are stored.
|
/// Specifies a pointer to the location where the indices are stored.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glDrawRangeElements")]
|
||||||
public static
|
public static
|
||||||
void DrawRangeElements<T5>(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] ref T5 indices)
|
void DrawRangeElements<T5>(OpenTK.Graphics.ES30.All mode, Int32 start, Int32 end, Int32 count, OpenTK.Graphics.ES30.All type, [InAttribute, OutAttribute] ref T5 indices)
|
||||||
|
@ -16363,6 +16383,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the name of an existing renderbuffer object of type renderbuffertarget to attach.
|
/// Specifies the name of an existing renderbuffer object of type renderbuffertarget to attach.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferRenderbuffer")]
|
||||||
public static
|
public static
|
||||||
void FramebufferRenderbuffer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All renderbuffertarget, Int32 renderbuffer)
|
void FramebufferRenderbuffer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All renderbuffertarget, Int32 renderbuffer)
|
||||||
|
@ -16492,6 +16513,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>[requires: v2.0 and ES_VERSION_2_0]</summary>
|
/// <summary>[requires: v2.0 and ES_VERSION_2_0]</summary>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glFramebufferTexture2D")]
|
||||||
public static
|
public static
|
||||||
void FramebufferTexture2D(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, Int32 texture, Int32 level)
|
void FramebufferTexture2D(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, OpenTK.Graphics.ES30.All textarget, Int32 texture, Int32 level)
|
||||||
|
@ -16582,6 +16604,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the layer of texture to attach.
|
/// Specifies the layer of texture to attach.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTextureLayer")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glFramebufferTextureLayer")]
|
||||||
public static
|
public static
|
||||||
void FramebufferTextureLayer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, Int32 texture, Int32 level, Int32 layer)
|
void FramebufferTextureLayer(OpenTK.Graphics.ES30.All target, OpenTK.Graphics.ES30.All attachment, Int32 texture, Int32 level, Int32 layer)
|
||||||
|
@ -18724,6 +18747,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Returns a null terminated string containing the name of the attribute variable.
|
/// Returns a null terminated string containing the name of the attribute variable.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")]
|
||||||
public static
|
public static
|
||||||
void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.ES30.All type, [OutAttribute] StringBuilder name)
|
void GetActiveAttrib(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.ES30.All type, [OutAttribute] StringBuilder name)
|
||||||
|
@ -18840,6 +18864,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Returns a null terminated string containing the name of the attribute variable.
|
/// Returns a null terminated string containing the name of the attribute variable.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveAttrib")]
|
||||||
public static
|
public static
|
||||||
|
@ -19192,6 +19217,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Returns a null terminated string containing the name of the uniform variable.
|
/// Returns a null terminated string containing the name of the uniform variable.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")]
|
||||||
public static
|
public static
|
||||||
void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.ES30.All type, [OutAttribute] StringBuilder name)
|
void GetActiveUniform(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.ES30.All type, [OutAttribute] StringBuilder name)
|
||||||
|
@ -19308,6 +19334,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Returns a null terminated string containing the name of the uniform variable.
|
/// Returns a null terminated string containing the name of the uniform variable.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetActiveUniform")]
|
||||||
public static
|
public static
|
||||||
|
@ -19707,6 +19734,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the address of a variable to receive the result of the query.
|
/// Specifies the address of a variable to receive the result of the query.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")]
|
||||||
public static
|
public static
|
||||||
void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params)
|
void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params)
|
||||||
|
@ -19750,6 +19778,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the address of a variable to receive the result of the query.
|
/// Specifies the address of a variable to receive the result of the query.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")]
|
||||||
public static
|
public static
|
||||||
void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params)
|
void GetActiveUniformBlock(Int32 program, Int32 uniformBlockIndex, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params)
|
||||||
|
@ -19794,6 +19823,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the address of a variable to receive the result of the query.
|
/// Specifies the address of a variable to receive the result of the query.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformBlockiv")]
|
||||||
public static
|
public static
|
||||||
|
@ -20328,6 +20358,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the address of an array of uniformCount integers which are to receive the value of pname for each uniform in uniformIndices.
|
/// Specifies the address of an array of uniformCount integers which are to receive the value of pname for each uniform in uniformIndices.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")]
|
||||||
public static
|
public static
|
||||||
void GetActiveUniforms(Int32 program, Int32 uniformCount, Int32[] uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params)
|
void GetActiveUniforms(Int32 program, Int32 uniformCount, Int32[] uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params)
|
||||||
|
@ -20427,6 +20458,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the address of an array of uniformCount integers which are to receive the value of pname for each uniform in uniformIndices.
|
/// Specifies the address of an array of uniformCount integers which are to receive the value of pname for each uniform in uniformIndices.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")]
|
||||||
public static
|
public static
|
||||||
void GetActiveUniforms(Int32 program, Int32 uniformCount, ref Int32 uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params)
|
void GetActiveUniforms(Int32 program, Int32 uniformCount, ref Int32 uniformIndices, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params)
|
||||||
|
@ -20520,6 +20552,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the address of an array of uniformCount integers which are to receive the value of pname for each uniform in uniformIndices.
|
/// Specifies the address of an array of uniformCount integers which are to receive the value of pname for each uniform in uniformIndices.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetActiveUniformsiv")]
|
||||||
public static
|
public static
|
||||||
|
@ -22193,6 +22226,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// The address of an array of characters that will receive the messages.
|
/// The address of an array of characters that will receive the messages.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")]
|
||||||
public static
|
public static
|
||||||
Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES30.All[] sources, [OutAttribute] OpenTK.Graphics.ES30.All[] types, [OutAttribute] Int32[] ids, [OutAttribute] OpenTK.Graphics.ES30.All[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog)
|
Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES30.All[] sources, [OutAttribute] OpenTK.Graphics.ES30.All[] types, [OutAttribute] Int32[] ids, [OutAttribute] OpenTK.Graphics.ES30.All[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog)
|
||||||
|
@ -22260,6 +22294,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// The address of an array of characters that will receive the messages.
|
/// The address of an array of characters that will receive the messages.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")]
|
||||||
public static
|
public static
|
||||||
Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.ES30.All sources, [OutAttribute] out OpenTK.Graphics.ES30.All types, [OutAttribute] out Int32 ids, [OutAttribute] out OpenTK.Graphics.ES30.All severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog)
|
Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.ES30.All sources, [OutAttribute] out OpenTK.Graphics.ES30.All types, [OutAttribute] out Int32 ids, [OutAttribute] out OpenTK.Graphics.ES30.All severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog)
|
||||||
|
@ -22333,6 +22368,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// The address of an array of characters that will receive the messages.
|
/// The address of an array of characters that will receive the messages.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLog")]
|
||||||
public static
|
public static
|
||||||
|
@ -23432,6 +23468,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>[requires: v3.0 and ES_VERSION_3_0]</summary>
|
/// <summary>[requires: v3.0 and ES_VERSION_3_0]</summary>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")]
|
||||||
public static
|
public static
|
||||||
void GetInteger64(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute] Int64[] data)
|
void GetInteger64(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute] Int64[] data)
|
||||||
|
@ -23453,6 +23490,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>[requires: v3.0 and ES_VERSION_3_0]</summary>
|
/// <summary>[requires: v3.0 and ES_VERSION_3_0]</summary>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")]
|
||||||
public static
|
public static
|
||||||
void GetInteger64(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute] out Int64 data)
|
void GetInteger64(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute] out Int64 data)
|
||||||
|
@ -23475,6 +23513,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>[requires: v3.0 and ES_VERSION_3_0]</summary>
|
/// <summary>[requires: v3.0 and ES_VERSION_3_0]</summary>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetInteger64i_v")]
|
||||||
public static
|
public static
|
||||||
|
@ -23839,6 +23878,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>[requires: v3.0 and ES_VERSION_3_0]</summary>
|
/// <summary>[requires: v3.0 and ES_VERSION_3_0]</summary>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")]
|
||||||
public static
|
public static
|
||||||
void GetInteger(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute] Int32[] data)
|
void GetInteger(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute] Int32[] data)
|
||||||
|
@ -23860,6 +23900,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>[requires: v3.0 and ES_VERSION_3_0]</summary>
|
/// <summary>[requires: v3.0 and ES_VERSION_3_0]</summary>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")]
|
||||||
public static
|
public static
|
||||||
void GetInteger(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute] out Int32 data)
|
void GetInteger(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute] out Int32 data)
|
||||||
|
@ -23882,6 +23923,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>[requires: v3.0 and ES_VERSION_3_0]</summary>
|
/// <summary>[requires: v3.0 and ES_VERSION_3_0]</summary>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetIntegeri_v")]
|
||||||
public static
|
public static
|
||||||
|
@ -24556,6 +24598,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// The address of a string that will receive the object label.
|
/// The address of a string that will receive the object label.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")]
|
||||||
public static
|
public static
|
||||||
void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label)
|
void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label)
|
||||||
|
@ -24604,6 +24647,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// The address of a string that will receive the object label.
|
/// The address of a string that will receive the object label.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")]
|
||||||
public static
|
public static
|
||||||
void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label)
|
void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label)
|
||||||
|
@ -24653,6 +24697,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// The address of a string that will receive the object label.
|
/// The address of a string that will receive the object label.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabel")]
|
||||||
public static
|
public static
|
||||||
|
@ -27456,6 +27501,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Returns the requested object parameter.
|
/// Returns the requested object parameter.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")]
|
||||||
public static
|
public static
|
||||||
void GetProgram(Int32 program, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params)
|
void GetProgram(Int32 program, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params)
|
||||||
|
@ -27494,6 +27540,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Returns the requested object parameter.
|
/// Returns the requested object parameter.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")]
|
||||||
public static
|
public static
|
||||||
void GetProgram(Int32 program, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params)
|
void GetProgram(Int32 program, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params)
|
||||||
|
@ -27533,6 +27580,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Returns the requested object parameter.
|
/// Returns the requested object parameter.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetProgramiv")]
|
||||||
public static
|
public static
|
||||||
|
@ -28126,6 +28174,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data.
|
/// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")]
|
||||||
public static
|
public static
|
||||||
void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params)
|
void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params)
|
||||||
|
@ -28164,6 +28213,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data.
|
/// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")]
|
||||||
public static
|
public static
|
||||||
void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params)
|
void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params)
|
||||||
|
@ -28203,6 +28253,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data.
|
/// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetQueryObjectuiv")]
|
||||||
public static
|
public static
|
||||||
|
@ -28796,6 +28847,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Returns the sampler parameters.
|
/// Returns the sampler parameters.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")]
|
||||||
public static
|
public static
|
||||||
void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute] Single[] @params)
|
void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute] Single[] @params)
|
||||||
|
@ -28834,6 +28886,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Returns the sampler parameters.
|
/// Returns the sampler parameters.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")]
|
||||||
public static
|
public static
|
||||||
void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Single @params)
|
void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Single @params)
|
||||||
|
@ -28873,6 +28926,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Returns the sampler parameters.
|
/// Returns the sampler parameters.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameterfv")]
|
||||||
public static
|
public static
|
||||||
|
@ -29243,6 +29297,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Returns the sampler parameters.
|
/// Returns the sampler parameters.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")]
|
||||||
public static
|
public static
|
||||||
void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params)
|
void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params)
|
||||||
|
@ -29281,6 +29336,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Returns the sampler parameters.
|
/// Returns the sampler parameters.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")]
|
||||||
public static
|
public static
|
||||||
void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params)
|
void GetSamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params)
|
||||||
|
@ -29320,6 +29376,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Returns the sampler parameters.
|
/// Returns the sampler parameters.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetSamplerParameteriv")]
|
||||||
public static
|
public static
|
||||||
|
@ -29855,6 +29912,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Returns the requested object parameter.
|
/// Returns the requested object parameter.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")]
|
||||||
public static
|
public static
|
||||||
void GetShader(Int32 shader, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params)
|
void GetShader(Int32 shader, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params)
|
||||||
|
@ -29893,6 +29951,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Returns the requested object parameter.
|
/// Returns the requested object parameter.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")]
|
||||||
public static
|
public static
|
||||||
void GetShader(Int32 shader, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params)
|
void GetShader(Int32 shader, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params)
|
||||||
|
@ -29932,6 +29991,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Returns the requested object parameter.
|
/// Returns the requested object parameter.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetShaderiv")]
|
||||||
public static
|
public static
|
||||||
|
@ -30776,6 +30836,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// For glGetStringi, specifies the index of the string to return.
|
/// For glGetStringi, specifies the index of the string to return.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetStringi")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetStringi")]
|
||||||
public static
|
public static
|
||||||
String GetString(OpenTK.Graphics.ES30.All name, Int32 index)
|
String GetString(OpenTK.Graphics.ES30.All name, Int32 index)
|
||||||
|
@ -31649,6 +31710,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// The address of a buffer into which will be written the name of the varying.
|
/// The address of a buffer into which will be written the name of the varying.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")]
|
||||||
public static
|
public static
|
||||||
void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.ES30.All type, [OutAttribute] StringBuilder name)
|
void GetTransformFeedbackVarying(Int32 program, Int32 index, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] out Int32 size, [OutAttribute] out OpenTK.Graphics.ES30.All type, [OutAttribute] StringBuilder name)
|
||||||
|
@ -31775,6 +31837,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// The address of a buffer into which will be written the name of the varying.
|
/// The address of a buffer into which will be written the name of the varying.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glGetTransformFeedbackVarying")]
|
||||||
public static
|
public static
|
||||||
|
@ -33015,6 +33078,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Returns the requested data.
|
/// Returns the requested data.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")]
|
||||||
public static
|
public static
|
||||||
void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute] Single[] @params)
|
void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute] Single[] @params)
|
||||||
|
@ -33053,6 +33117,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Returns the requested data.
|
/// Returns the requested data.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")]
|
||||||
public static
|
public static
|
||||||
void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Single @params)
|
void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Single @params)
|
||||||
|
@ -33092,6 +33157,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Returns the requested data.
|
/// Returns the requested data.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribfv")]
|
||||||
public static
|
public static
|
||||||
|
@ -33578,6 +33644,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Returns the requested data.
|
/// Returns the requested data.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")]
|
||||||
public static
|
public static
|
||||||
void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params)
|
void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params)
|
||||||
|
@ -33616,6 +33683,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Returns the requested data.
|
/// Returns the requested data.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")]
|
||||||
public static
|
public static
|
||||||
void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params)
|
void GetVertexAttrib(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params)
|
||||||
|
@ -33655,6 +33723,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Returns the requested data.
|
/// Returns the requested data.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribiv")]
|
||||||
public static
|
public static
|
||||||
|
@ -34025,6 +34094,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Returns the pointer value.
|
/// Returns the pointer value.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")]
|
||||||
public static
|
public static
|
||||||
void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute] IntPtr pointer)
|
void GetVertexAttribPointer(Int32 index, OpenTK.Graphics.ES30.All pname, [OutAttribute] IntPtr pointer)
|
||||||
|
@ -34057,6 +34127,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Returns the pointer value.
|
/// Returns the pointer value.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")]
|
||||||
public static
|
public static
|
||||||
void GetVertexAttribPointer<T2>(Int32 index, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T2[] pointer)
|
void GetVertexAttribPointer<T2>(Int32 index, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T2[] pointer)
|
||||||
|
@ -34098,6 +34169,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Returns the pointer value.
|
/// Returns the pointer value.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")]
|
||||||
public static
|
public static
|
||||||
void GetVertexAttribPointer<T2>(Int32 index, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T2[,] pointer)
|
void GetVertexAttribPointer<T2>(Int32 index, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T2[,] pointer)
|
||||||
|
@ -34139,6 +34211,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Returns the pointer value.
|
/// Returns the pointer value.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")]
|
||||||
public static
|
public static
|
||||||
void GetVertexAttribPointer<T2>(Int32 index, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T2[,,] pointer)
|
void GetVertexAttribPointer<T2>(Int32 index, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] T2[,,] pointer)
|
||||||
|
@ -34180,6 +34253,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Returns the pointer value.
|
/// Returns the pointer value.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glGetVertexAttribPointerv")]
|
||||||
public static
|
public static
|
||||||
void GetVertexAttribPointer<T2>(Int32 index, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] ref T2 pointer)
|
void GetVertexAttribPointer<T2>(Int32 index, OpenTK.Graphics.ES30.All pname, [InAttribute, OutAttribute] ref T2 pointer)
|
||||||
|
@ -36119,6 +36193,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// The address of a string containing the label to assign to the object.
|
/// The address of a string containing the label to assign to the object.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabel")]
|
||||||
public static
|
public static
|
||||||
void ObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 length, String label)
|
void ObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 length, String label)
|
||||||
|
@ -37027,6 +37102,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the new value of the parameter specified by pname for program.
|
/// Specifies the new value of the parameter specified by pname for program.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramParameteri")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glProgramParameteri")]
|
||||||
public static
|
public static
|
||||||
void ProgramParameter(Int32 program, OpenTK.Graphics.ES30.All pname, Int32 value)
|
void ProgramParameter(Int32 program, OpenTK.Graphics.ES30.All pname, Int32 value)
|
||||||
|
@ -38003,6 +38079,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored.
|
/// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterf")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterf")]
|
||||||
public static
|
public static
|
||||||
void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, Single param)
|
void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, Single param)
|
||||||
|
@ -38154,6 +38231,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored.
|
/// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")]
|
||||||
public static
|
public static
|
||||||
void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, Single[] param)
|
void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, Single[] param)
|
||||||
|
@ -38197,6 +38275,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored.
|
/// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameterfv")]
|
||||||
public static
|
public static
|
||||||
|
@ -38482,6 +38561,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored.
|
/// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteri")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteri")]
|
||||||
public static
|
public static
|
||||||
void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, Int32 param)
|
void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, Int32 param)
|
||||||
|
@ -38633,6 +38713,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored.
|
/// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")]
|
||||||
public static
|
public static
|
||||||
void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, Int32[] param)
|
void SamplerParameter(Int32 sampler, OpenTK.Graphics.ES30.All pname, Int32[] param)
|
||||||
|
@ -38676,6 +38757,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored.
|
/// For the vector commands (glSamplerParameter*v), specifies a pointer to an array where the value or values of pname are stored.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glSamplerParameteriv")]
|
||||||
public static
|
public static
|
||||||
|
@ -38993,6 +39075,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the length of the array whose address is given in binary.
|
/// Specifies the length of the array whose address is given in binary.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
||||||
public static
|
public static
|
||||||
void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.ES30.All binaryformat, IntPtr binary, Int32 length)
|
void ShaderBinary(Int32 count, Int32[] shaders, OpenTK.Graphics.ES30.All binaryformat, IntPtr binary, Int32 length)
|
||||||
|
@ -39041,6 +39124,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the length of the array whose address is given in binary.
|
/// Specifies the length of the array whose address is given in binary.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
||||||
public static
|
public static
|
||||||
void ShaderBinary<T3>(Int32 count, Int32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length)
|
void ShaderBinary<T3>(Int32 count, Int32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length)
|
||||||
|
@ -39098,6 +39182,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the length of the array whose address is given in binary.
|
/// Specifies the length of the array whose address is given in binary.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
||||||
public static
|
public static
|
||||||
void ShaderBinary<T3>(Int32 count, Int32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length)
|
void ShaderBinary<T3>(Int32 count, Int32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length)
|
||||||
|
@ -39155,6 +39240,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the length of the array whose address is given in binary.
|
/// Specifies the length of the array whose address is given in binary.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
||||||
public static
|
public static
|
||||||
void ShaderBinary<T3>(Int32 count, Int32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length)
|
void ShaderBinary<T3>(Int32 count, Int32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length)
|
||||||
|
@ -39212,6 +39298,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the length of the array whose address is given in binary.
|
/// Specifies the length of the array whose address is given in binary.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
||||||
public static
|
public static
|
||||||
void ShaderBinary<T3>(Int32 count, Int32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length)
|
void ShaderBinary<T3>(Int32 count, Int32[] shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length)
|
||||||
|
@ -39547,6 +39634,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the length of the array whose address is given in binary.
|
/// Specifies the length of the array whose address is given in binary.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
||||||
public static
|
public static
|
||||||
void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES30.All binaryformat, IntPtr binary, Int32 length)
|
void ShaderBinary(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES30.All binaryformat, IntPtr binary, Int32 length)
|
||||||
|
@ -39595,6 +39683,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the length of the array whose address is given in binary.
|
/// Specifies the length of the array whose address is given in binary.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
||||||
public static
|
public static
|
||||||
void ShaderBinary<T3>(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length)
|
void ShaderBinary<T3>(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] T3[] binary, Int32 length)
|
||||||
|
@ -39652,6 +39741,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the length of the array whose address is given in binary.
|
/// Specifies the length of the array whose address is given in binary.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
||||||
public static
|
public static
|
||||||
void ShaderBinary<T3>(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length)
|
void ShaderBinary<T3>(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] T3[,] binary, Int32 length)
|
||||||
|
@ -39709,6 +39799,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the length of the array whose address is given in binary.
|
/// Specifies the length of the array whose address is given in binary.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
||||||
public static
|
public static
|
||||||
void ShaderBinary<T3>(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length)
|
void ShaderBinary<T3>(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] T3[,,] binary, Int32 length)
|
||||||
|
@ -39766,6 +39857,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the length of the array whose address is given in binary.
|
/// Specifies the length of the array whose address is given in binary.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
||||||
public static
|
public static
|
||||||
void ShaderBinary<T3>(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length)
|
void ShaderBinary<T3>(Int32 count, ref Int32 shaders, OpenTK.Graphics.ES30.All binaryformat, [InAttribute, OutAttribute] ref T3 binary, Int32 length)
|
||||||
|
@ -40101,6 +40193,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the length of the array whose address is given in binary.
|
/// Specifies the length of the array whose address is given in binary.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
||||||
public static
|
public static
|
||||||
|
@ -40144,6 +40237,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the length of the array whose address is given in binary.
|
/// Specifies the length of the array whose address is given in binary.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
||||||
public static
|
public static
|
||||||
|
@ -40196,6 +40290,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the length of the array whose address is given in binary.
|
/// Specifies the length of the array whose address is given in binary.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
||||||
public static
|
public static
|
||||||
|
@ -40248,6 +40343,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the length of the array whose address is given in binary.
|
/// Specifies the length of the array whose address is given in binary.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
||||||
public static
|
public static
|
||||||
|
@ -40300,6 +40396,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the length of the array whose address is given in binary.
|
/// Specifies the length of the array whose address is given in binary.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glShaderBinary")]
|
||||||
public static
|
public static
|
||||||
|
@ -42492,6 +42589,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies a mask that is ANDed with both the reference value and the stored stencil value when the test is done. The initial value is all 1's.
|
/// Specifies a mask that is ANDed with both the reference value and the stored stencil value when the test is done. The initial value is all 1's.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFunc")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFunc")]
|
||||||
public static
|
public static
|
||||||
void StencilFunc(OpenTK.Graphics.ES30.All func, Int32 @ref, Int32 mask)
|
void StencilFunc(OpenTK.Graphics.ES30.All func, Int32 @ref, Int32 mask)
|
||||||
|
@ -42628,6 +42726,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies a mask that is ANDed with both the reference value and the stored stencil value when the test is done. The initial value is all 1's.
|
/// Specifies a mask that is ANDed with both the reference value and the stored stencil value when the test is done. The initial value is all 1's.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilFuncSeparate")]
|
||||||
public static
|
public static
|
||||||
void StencilFuncSeparate(OpenTK.Graphics.ES30.All face, OpenTK.Graphics.ES30.All func, Int32 @ref, Int32 mask)
|
void StencilFuncSeparate(OpenTK.Graphics.ES30.All face, OpenTK.Graphics.ES30.All func, Int32 @ref, Int32 mask)
|
||||||
|
@ -42814,6 +42913,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies a bit mask to enable and disable writing of individual bits in the stencil planes. Initially, the mask is all 1's.
|
/// Specifies a bit mask to enable and disable writing of individual bits in the stencil planes. Initially, the mask is all 1's.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glStencilMaskSeparate")]
|
||||||
public static
|
public static
|
||||||
void StencilMaskSeparate(OpenTK.Graphics.ES30.All face, Int32 mask)
|
void StencilMaskSeparate(OpenTK.Graphics.ES30.All face, Int32 mask)
|
||||||
|
@ -46715,6 +46815,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Identifies the mode used to capture the varying variables when transform feedback is active. bufferMode must be GL_INTERLEAVED_ATTRIBS or GL_SEPARATE_ATTRIBS.
|
/// Identifies the mode used to capture the varying variables when transform feedback is active. bufferMode must be GL_INTERLEAVED_ATTRIBS or GL_SEPARATE_ATTRIBS.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTransformFeedbackVaryings")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glTransformFeedbackVaryings")]
|
||||||
public static
|
public static
|
||||||
void TransformFeedbackVaryings(Int32 program, Int32 count, String[] varyings, OpenTK.Graphics.ES30.All bufferMode)
|
void TransformFeedbackVaryings(Int32 program, Int32 count, String[] varyings, OpenTK.Graphics.ES30.All bufferMode)
|
||||||
|
@ -51515,6 +51616,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>[requires: v3.0 and ES_VERSION_3_0]</summary>
|
/// <summary>[requires: v3.0 and ES_VERSION_3_0]</summary>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")]
|
||||||
public static
|
public static
|
||||||
void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, IntPtr pointer)
|
void VertexAttribIPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, IntPtr pointer)
|
||||||
|
@ -51530,6 +51632,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>[requires: v3.0 and ES_VERSION_3_0]</summary>
|
/// <summary>[requires: v3.0 and ES_VERSION_3_0]</summary>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")]
|
||||||
public static
|
public static
|
||||||
void VertexAttribIPointer<T4>(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [InAttribute, OutAttribute] T4[] pointer)
|
void VertexAttribIPointer<T4>(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [InAttribute, OutAttribute] T4[] pointer)
|
||||||
|
@ -51554,6 +51657,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>[requires: v3.0 and ES_VERSION_3_0]</summary>
|
/// <summary>[requires: v3.0 and ES_VERSION_3_0]</summary>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")]
|
||||||
public static
|
public static
|
||||||
void VertexAttribIPointer<T4>(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [InAttribute, OutAttribute] T4[,] pointer)
|
void VertexAttribIPointer<T4>(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [InAttribute, OutAttribute] T4[,] pointer)
|
||||||
|
@ -51578,6 +51682,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>[requires: v3.0 and ES_VERSION_3_0]</summary>
|
/// <summary>[requires: v3.0 and ES_VERSION_3_0]</summary>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")]
|
||||||
public static
|
public static
|
||||||
void VertexAttribIPointer<T4>(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [InAttribute, OutAttribute] T4[,,] pointer)
|
void VertexAttribIPointer<T4>(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [InAttribute, OutAttribute] T4[,,] pointer)
|
||||||
|
@ -51602,6 +51707,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>[requires: v3.0 and ES_VERSION_3_0]</summary>
|
/// <summary>[requires: v3.0 and ES_VERSION_3_0]</summary>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glVertexAttribIPointer")]
|
||||||
public static
|
public static
|
||||||
void VertexAttribIPointer<T4>(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [InAttribute, OutAttribute] ref T4 pointer)
|
void VertexAttribIPointer<T4>(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, Int32 stride, [InAttribute, OutAttribute] ref T4 pointer)
|
||||||
|
@ -52010,6 +52116,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0.
|
/// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")]
|
||||||
public static
|
public static
|
||||||
void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, IntPtr pointer)
|
void VertexAttribPointer(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, IntPtr pointer)
|
||||||
|
@ -52057,6 +52164,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0.
|
/// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")]
|
||||||
public static
|
public static
|
||||||
void VertexAttribPointer<T5>(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[] pointer)
|
void VertexAttribPointer<T5>(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[] pointer)
|
||||||
|
@ -52113,6 +52221,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0.
|
/// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")]
|
||||||
public static
|
public static
|
||||||
void VertexAttribPointer<T5>(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,] pointer)
|
void VertexAttribPointer<T5>(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,] pointer)
|
||||||
|
@ -52169,6 +52278,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0.
|
/// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")]
|
||||||
public static
|
public static
|
||||||
void VertexAttribPointer<T5>(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,,] pointer)
|
void VertexAttribPointer<T5>(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute] T5[,,] pointer)
|
||||||
|
@ -52225,6 +52335,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0.
|
/// Specifies a offset of the first component of the first generic vertex attribute in the array in the data store of the buffer currently bound to the GL_ARRAY_BUFFER target. The initial value is 0.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")]
|
[AutoGenerated(Category = "ES_VERSION_2_0", Version = "2.0", EntryPoint = "glVertexAttribPointer")]
|
||||||
public static
|
public static
|
||||||
void VertexAttribPointer<T5>(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute] ref T5 pointer)
|
void VertexAttribPointer<T5>(Int32 index, Int32 size, OpenTK.Graphics.ES30.All type, bool normalized, Int32 stride, [InAttribute, OutAttribute] ref T5 pointer)
|
||||||
|
@ -53125,6 +53236,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the timeout that the server should wait before continuing. timeout must be GL_TIMEOUT_IGNORED.
|
/// Specifies the timeout that the server should wait before continuing. timeout must be GL_TIMEOUT_IGNORED.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glWaitSync")]
|
[AutoGenerated(Category = "ES_VERSION_3_0", Version = "3.0", EntryPoint = "glWaitSync")]
|
||||||
public static
|
public static
|
||||||
void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, Int64 timeout)
|
void WaitSync(IntPtr sync, OpenTK.Graphics.ES30.All flags, Int64 timeout)
|
||||||
|
@ -53339,6 +53451,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the name of a query object.
|
/// Specifies the name of a query object.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glBeginQueryEXT")]
|
[AutoGenerated(Category = "EXT_disjoint_timer_query|EXT_occlusion_query_boolean", Version = "", EntryPoint = "glBeginQueryEXT")]
|
||||||
public static
|
public static
|
||||||
void BeginQuery(OpenTK.Graphics.ES30.All target, Int32 id)
|
void BeginQuery(OpenTK.Graphics.ES30.All target, Int32 id)
|
||||||
|
@ -55517,6 +55630,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>[requires: EXT_multiview_draw_buffers]</summary>
|
/// <summary>[requires: EXT_multiview_draw_buffers]</summary>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")]
|
[AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")]
|
||||||
public static
|
public static
|
||||||
void GetInteger(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute] Int32[] data)
|
void GetInteger(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute] Int32[] data)
|
||||||
|
@ -55538,6 +55652,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>[requires: EXT_multiview_draw_buffers]</summary>
|
/// <summary>[requires: EXT_multiview_draw_buffers]</summary>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")]
|
[AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")]
|
||||||
public static
|
public static
|
||||||
void GetInteger(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute] out Int32 data)
|
void GetInteger(OpenTK.Graphics.ES30.All target, Int32 index, [OutAttribute] out Int32 data)
|
||||||
|
@ -55560,6 +55675,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>[requires: EXT_multiview_draw_buffers]</summary>
|
/// <summary>[requires: EXT_multiview_draw_buffers]</summary>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")]
|
[AutoGenerated(Category = "EXT_multiview_draw_buffers", Version = "", EntryPoint = "glGetIntegeri_vEXT")]
|
||||||
public static
|
public static
|
||||||
|
@ -56894,6 +57010,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data.
|
/// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")]
|
[AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")]
|
||||||
public static
|
public static
|
||||||
void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int64[] @params)
|
void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int64[] @params)
|
||||||
|
@ -56932,6 +57049,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data.
|
/// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")]
|
[AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")]
|
||||||
public static
|
public static
|
||||||
void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int64 @params)
|
void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int64 @params)
|
||||||
|
@ -56971,6 +57089,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data.
|
/// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")]
|
[AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjecti64vEXT")]
|
||||||
public static
|
public static
|
||||||
|
@ -57341,6 +57460,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data.
|
/// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")]
|
[AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")]
|
||||||
public static
|
public static
|
||||||
void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params)
|
void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] Int32[] @params)
|
||||||
|
@ -57379,6 +57499,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data.
|
/// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")]
|
[AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")]
|
||||||
public static
|
public static
|
||||||
void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params)
|
void GetQueryObject(Int32 id, OpenTK.Graphics.ES30.All pname, [OutAttribute] out Int32 @params)
|
||||||
|
@ -57418,6 +57539,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data.
|
/// If a buffer is bound to the GL_QUERY_RESULT_BUFFER target, then params is treated as an offset to a location within that buffer's data store to receive the result of the query. If no buffer is bound to GL_QUERY_RESULT_BUFFER, then params is treated as an address in client memory of a variable to receive the resulting data.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")]
|
[AutoGenerated(Category = "EXT_disjoint_timer_query", Version = "", EntryPoint = "glGetQueryObjectivEXT")]
|
||||||
public static
|
public static
|
||||||
|
@ -58383,6 +58505,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies a combination of access flags indicating the desired access to the range.
|
/// Specifies a combination of access flags indicating the desired access to the range.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")]
|
[AutoGenerated(Category = "EXT_map_buffer_range", Version = "", EntryPoint = "glMapBufferRangeEXT")]
|
||||||
public static
|
public static
|
||||||
IntPtr MapBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr length, Int32 access)
|
IntPtr MapBufferRange(OpenTK.Graphics.ES30.All target, IntPtr offset, IntPtr length, Int32 access)
|
||||||
|
@ -60426,6 +60549,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Specifies the new value of the parameter specified by pname for program.
|
/// Specifies the new value of the parameter specified by pname for program.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")]
|
[AutoGenerated(Category = "EXT_separate_shader_objects", Version = "", EntryPoint = "glProgramParameteriEXT")]
|
||||||
public static
|
public static
|
||||||
void ProgramParameter(Int32 program, OpenTK.Graphics.ES30.All pname, Int32 value)
|
void ProgramParameter(Int32 program, OpenTK.Graphics.ES30.All pname, Int32 value)
|
||||||
|
@ -66901,6 +67025,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
|
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")]
|
||||||
public static
|
public static
|
||||||
void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, Int32[] ids, bool enabled)
|
void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, Int32[] ids, bool enabled)
|
||||||
|
@ -66954,6 +67079,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
|
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")]
|
||||||
public static
|
public static
|
||||||
void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, ref Int32 ids, bool enabled)
|
void DebugMessageControl(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, OpenTK.Graphics.ES30.All severity, Int32 count, ref Int32 ids, bool enabled)
|
||||||
|
@ -67007,6 +67133,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
|
/// A Boolean flag determining whether the selected messages should be enabled or disabled.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageControlKHR")]
|
||||||
public static
|
public static
|
||||||
|
@ -67524,6 +67651,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// The address of a character array containing the message to insert.
|
/// The address of a character array containing the message to insert.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glDebugMessageInsertKHR")]
|
||||||
public static
|
public static
|
||||||
void DebugMessageInsert(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, Int32 id, OpenTK.Graphics.ES30.All severity, Int32 length, String buf)
|
void DebugMessageInsert(OpenTK.Graphics.ES30.All source, OpenTK.Graphics.ES30.All type, Int32 id, OpenTK.Graphics.ES30.All severity, Int32 length, String buf)
|
||||||
|
@ -67725,6 +67853,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// The address of an array of characters that will receive the messages.
|
/// The address of an array of characters that will receive the messages.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")]
|
||||||
public static
|
public static
|
||||||
Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES30.All[] sources, [OutAttribute] OpenTK.Graphics.ES30.All[] types, [OutAttribute] Int32[] ids, [OutAttribute] OpenTK.Graphics.ES30.All[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog)
|
Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] OpenTK.Graphics.ES30.All[] sources, [OutAttribute] OpenTK.Graphics.ES30.All[] types, [OutAttribute] Int32[] ids, [OutAttribute] OpenTK.Graphics.ES30.All[] severities, [OutAttribute] Int32[] lengths, [OutAttribute] StringBuilder messageLog)
|
||||||
|
@ -67792,6 +67921,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// The address of an array of characters that will receive the messages.
|
/// The address of an array of characters that will receive the messages.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")]
|
||||||
public static
|
public static
|
||||||
Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.ES30.All sources, [OutAttribute] out OpenTK.Graphics.ES30.All types, [OutAttribute] out Int32 ids, [OutAttribute] out OpenTK.Graphics.ES30.All severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog)
|
Int32 GetDebugMessageLog(Int32 count, Int32 bufSize, [OutAttribute] out OpenTK.Graphics.ES30.All sources, [OutAttribute] out OpenTK.Graphics.ES30.All types, [OutAttribute] out Int32 ids, [OutAttribute] out OpenTK.Graphics.ES30.All severities, [OutAttribute] out Int32 lengths, [OutAttribute] StringBuilder messageLog)
|
||||||
|
@ -67865,6 +67995,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// The address of an array of characters that will receive the messages.
|
/// The address of an array of characters that will receive the messages.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetDebugMessageLogKHR")]
|
||||||
public static
|
public static
|
||||||
|
@ -68509,6 +68640,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// The address of a string that will receive the object label.
|
/// The address of a string that will receive the object label.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")]
|
||||||
public static
|
public static
|
||||||
void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label)
|
void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute] Int32[] length, [OutAttribute] StringBuilder label)
|
||||||
|
@ -68557,6 +68689,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// The address of a string that will receive the object label.
|
/// The address of a string that will receive the object label.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")]
|
||||||
public static
|
public static
|
||||||
void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label)
|
void GetObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 bufSize, [OutAttribute] out Int32 length, [OutAttribute] StringBuilder label)
|
||||||
|
@ -68606,6 +68739,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// The address of a string that will receive the object label.
|
/// The address of a string that will receive the object label.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[System.CLSCompliant(false)]
|
[System.CLSCompliant(false)]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glGetObjectLabelKHR")]
|
||||||
public static
|
public static
|
||||||
|
@ -69919,6 +70053,7 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// The address of a string containing the label to assign to the object.
|
/// The address of a string containing the label to assign to the object.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// </param>
|
/// </param>
|
||||||
|
[Obsolete("Use strongly-typed overload instead")]
|
||||||
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")]
|
[AutoGenerated(Category = "KHR_debug", Version = "", EntryPoint = "glObjectLabelKHR")]
|
||||||
public static
|
public static
|
||||||
void ObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 length, String label)
|
void ObjectLabel(OpenTK.Graphics.ES30.All identifier, Int32 name, Int32 length, String label)
|
||||||
|
|
|
@ -438,6 +438,10 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// </summary>
|
/// </summary>
|
||||||
CurrentBit = ((int)0x00000001) ,
|
CurrentBit = ((int)0x00000001) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_PASS_EVENT_BIT_AMD = 0x00000001
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthPassEventBitAmd = ((int)0x00000001) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_SYNC_FLUSH_COMMANDS_BIT = 0x00000001
|
/// Original was GL_SYNC_FLUSH_COMMANDS_BIT = 0x00000001
|
||||||
/// </summary>
|
/// </summary>
|
||||||
SyncFlushCommandsBit = ((int)0x00000001) ,
|
SyncFlushCommandsBit = ((int)0x00000001) ,
|
||||||
|
@ -502,6 +506,10 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// </summary>
|
/// </summary>
|
||||||
PointBit = ((int)0x00000002) ,
|
PointBit = ((int)0x00000002) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_FAIL_EVENT_BIT_AMD = 0x00000002
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthFailEventBitAmd = ((int)0x00000002) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_COLOR_BUFFER_BIT2_QCOM = 0x00000004
|
/// Original was GL_COLOR_BUFFER_BIT2_QCOM = 0x00000004
|
||||||
/// </summary>
|
/// </summary>
|
||||||
ColorBufferBit2Qcom = ((int)0x00000004) ,
|
ColorBufferBit2Qcom = ((int)0x00000004) ,
|
||||||
|
@ -518,6 +526,10 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// </summary>
|
/// </summary>
|
||||||
LineBit = ((int)0x00000004) ,
|
LineBit = ((int)0x00000004) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_STENCIL_FAIL_EVENT_BIT_AMD = 0x00000004
|
||||||
|
/// </summary>
|
||||||
|
QueryStencilFailEventBitAmd = ((int)0x00000004) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_UNIFORM_BARRIER_BIT = 0x00000004
|
/// Original was GL_UNIFORM_BARRIER_BIT = 0x00000004
|
||||||
/// </summary>
|
/// </summary>
|
||||||
UniformBarrierBit = ((int)0x00000004) ,
|
UniformBarrierBit = ((int)0x00000004) ,
|
||||||
|
@ -534,6 +546,10 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// </summary>
|
/// </summary>
|
||||||
PolygonBit = ((int)0x00000008) ,
|
PolygonBit = ((int)0x00000008) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_BOUNDS_FAIL_EVENT_BIT_AMD = 0x00000008
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthBoundsFailEventBitAmd = ((int)0x00000008) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_TESS_CONTROL_SHADER_BIT = 0x00000008
|
/// Original was GL_TESS_CONTROL_SHADER_BIT = 0x00000008
|
||||||
/// </summary>
|
/// </summary>
|
||||||
TessControlShaderBit = ((int)0x00000008) ,
|
TessControlShaderBit = ((int)0x00000008) ,
|
||||||
|
@ -8494,6 +8510,46 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// </summary>
|
/// </summary>
|
||||||
CompressedRgbaAstc12X12Khr = ((int)0x93BD) ,
|
CompressedRgbaAstc12X12Khr = ((int)0x93BD) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_3x3x3_OES = 0x93C0
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc3X3x3Oes = ((int)0x93C0) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_4x3x3_OES = 0x93C1
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc4X3x3Oes = ((int)0x93C1) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_4x4x3_OES = 0x93C2
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc4X4x3Oes = ((int)0x93C2) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_4x4x4_OES = 0x93C3
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc4X4x4Oes = ((int)0x93C3) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_5x4x4_OES = 0x93C4
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc5X4x4Oes = ((int)0x93C4) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_5x5x4_OES = 0x93C5
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc5X5x4Oes = ((int)0x93C5) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_5x5x5_OES = 0x93C6
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc5X5x5Oes = ((int)0x93C6) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_6x5x5_OES = 0x93C7
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc6X5x5Oes = ((int)0x93C7) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_6x6x5_OES = 0x93C8
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc6X6x5Oes = ((int)0x93C8) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_6x6x6_OES = 0x93C9
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc6X6x6Oes = ((int)0x93C9) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR = 0x93D0
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR = 0x93D0
|
||||||
/// </summary>
|
/// </summary>
|
||||||
CompressedSrgb8Alpha8Astc4X4Khr = ((int)0x93D0) ,
|
CompressedSrgb8Alpha8Astc4X4Khr = ((int)0x93D0) ,
|
||||||
|
@ -8550,6 +8606,46 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// </summary>
|
/// </summary>
|
||||||
CompressedSrgb8Alpha8Astc12X12Khr = ((int)0x93DD) ,
|
CompressedSrgb8Alpha8Astc12X12Khr = ((int)0x93DD) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_3x3x3_OES = 0x93E0
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc3X3x3Oes = ((int)0x93E0) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x3x3_OES = 0x93E1
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc4X3x3Oes = ((int)0x93E1) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4x3_OES = 0x93E2
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc4X4x3Oes = ((int)0x93E2) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4x4_OES = 0x93E3
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc4X4x4Oes = ((int)0x93E3) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4x4_OES = 0x93E4
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc5X4x4Oes = ((int)0x93E4) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5x4_OES = 0x93E5
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc5X5x4Oes = ((int)0x93E5) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5x5_OES = 0x93E6
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc5X5x5Oes = ((int)0x93E6) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5x5_OES = 0x93E7
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc6X5x5Oes = ((int)0x93E7) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6x5_OES = 0x93E8
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc6X6x5Oes = ((int)0x93E8) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6x6_OES = 0x93E9
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc6X6x6Oes = ((int)0x93E9) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_ALL_ATTRIB_BITS = 0xFFFFFFFF
|
/// Original was GL_ALL_ATTRIB_BITS = 0xFFFFFFFF
|
||||||
/// </summary>
|
/// </summary>
|
||||||
AllAttribBits = unchecked((int)0xFFFFFFFF) ,
|
AllAttribBits = unchecked((int)0xFFFFFFFF) ,
|
||||||
|
@ -8578,6 +8674,10 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// </summary>
|
/// </summary>
|
||||||
InvalidIndex = unchecked((int)0xFFFFFFFF) ,
|
InvalidIndex = unchecked((int)0xFFFFFFFF) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_ALL_EVENT_BITS_AMD = 0xFFFFFFFF
|
||||||
|
/// </summary>
|
||||||
|
QueryAllEventBitsAmd = unchecked((int)0xFFFFFFFF) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_TIMEOUT_IGNORED = 0xFFFFFFFFFFFFFFFF
|
/// Original was GL_TIMEOUT_IGNORED = 0xFFFFFFFFFFFFFFFF
|
||||||
/// </summary>
|
/// </summary>
|
||||||
TimeoutIgnored = unchecked((int)0xFFFFFFFFFFFFFFFF) ,
|
TimeoutIgnored = unchecked((int)0xFFFFFFFFFFFFFFFF) ,
|
||||||
|
@ -14519,6 +14619,21 @@ namespace OpenTK.Graphics.ES30
|
||||||
GccsoShaderBinaryFj = ((int)0x9260) ,
|
GccsoShaderBinaryFj = ((int)0x9260) ,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Not used directly.
|
||||||
|
/// </summary>
|
||||||
|
public enum FogCoordinatePointerType : int
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_FLOAT = 0x1406
|
||||||
|
/// </summary>
|
||||||
|
Float = ((int)0x1406) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_DOUBLE = 0x140A
|
||||||
|
/// </summary>
|
||||||
|
Double = ((int)0x140A) ,
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Not used directly.
|
/// Not used directly.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -14577,6 +14692,36 @@ namespace OpenTK.Graphics.ES30
|
||||||
FogOffsetValueSgix = ((int)0x8199) ,
|
FogOffsetValueSgix = ((int)0x8199) ,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Not used directly.
|
||||||
|
/// </summary>
|
||||||
|
public enum FogPointerTypeExt : int
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_FLOAT = 0x1406
|
||||||
|
/// </summary>
|
||||||
|
Float = ((int)0x1406) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_DOUBLE = 0x140A
|
||||||
|
/// </summary>
|
||||||
|
Double = ((int)0x140A) ,
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Not used directly.
|
||||||
|
/// </summary>
|
||||||
|
public enum FogPointerTypeIbm : int
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_FLOAT = 0x1406
|
||||||
|
/// </summary>
|
||||||
|
Float = ((int)0x1406) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_DOUBLE = 0x140A
|
||||||
|
/// </summary>
|
||||||
|
Double = ((int)0x140A) ,
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Not used directly.
|
/// Not used directly.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -19710,10 +19855,6 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Zero = ((int)0) ,
|
Zero = ((int)0) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Original was GL_XOR = 0x1506
|
|
||||||
/// </summary>
|
|
||||||
Xor = ((int)0x1506) ,
|
|
||||||
/// <summary>
|
|
||||||
/// Original was GL_XOR_NV = 0x1506
|
/// Original was GL_XOR_NV = 0x1506
|
||||||
/// </summary>
|
/// </summary>
|
||||||
XorNv = ((int)0x1506) ,
|
XorNv = ((int)0x1506) ,
|
||||||
|
@ -19722,26 +19863,14 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Invert = ((int)0x150A) ,
|
Invert = ((int)0x150A) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Original was GL_RED = 0x1903
|
|
||||||
/// </summary>
|
|
||||||
Red = ((int)0x1903) ,
|
|
||||||
/// <summary>
|
|
||||||
/// Original was GL_RED_NV = 0x1903
|
/// Original was GL_RED_NV = 0x1903
|
||||||
/// </summary>
|
/// </summary>
|
||||||
RedNv = ((int)0x1903) ,
|
RedNv = ((int)0x1903) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Original was GL_GREEN = 0x1904
|
|
||||||
/// </summary>
|
|
||||||
Green = ((int)0x1904) ,
|
|
||||||
/// <summary>
|
|
||||||
/// Original was GL_GREEN_NV = 0x1904
|
/// Original was GL_GREEN_NV = 0x1904
|
||||||
/// </summary>
|
/// </summary>
|
||||||
GreenNv = ((int)0x1904) ,
|
GreenNv = ((int)0x1904) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Original was GL_BLUE = 0x1905
|
|
||||||
/// </summary>
|
|
||||||
Blue = ((int)0x1905) ,
|
|
||||||
/// <summary>
|
|
||||||
/// Original was GL_BLUE_NV = 0x1905
|
/// Original was GL_BLUE_NV = 0x1905
|
||||||
/// </summary>
|
/// </summary>
|
||||||
BlueNv = ((int)0x1905) ,
|
BlueNv = ((int)0x1905) ,
|
||||||
|
@ -20533,6 +20662,34 @@ namespace OpenTK.Graphics.ES30
|
||||||
TransformFeedback = ((int)0x8E22) ,
|
TransformFeedback = ((int)0x8E22) ,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Not used directly.
|
||||||
|
/// </summary>
|
||||||
|
[Flags]
|
||||||
|
public enum OcclusionQueryEventMaskAmd : int
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_PASS_EVENT_BIT_AMD = 0x00000001
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthPassEventBitAmd = ((int)0x00000001) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_FAIL_EVENT_BIT_AMD = 0x00000002
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthFailEventBitAmd = ((int)0x00000002) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_STENCIL_FAIL_EVENT_BIT_AMD = 0x00000004
|
||||||
|
/// </summary>
|
||||||
|
QueryStencilFailEventBitAmd = ((int)0x00000004) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_BOUNDS_FAIL_EVENT_BIT_AMD = 0x00000008
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthBoundsFailEventBitAmd = ((int)0x00000008) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_ALL_EVENT_BITS_AMD = 0xFFFFFFFF
|
||||||
|
/// </summary>
|
||||||
|
QueryAllEventBitsAmd = unchecked((int)0xFFFFFFFF) ,
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Not used directly.
|
/// Not used directly.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -20967,6 +21124,46 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// </summary>
|
/// </summary>
|
||||||
CompressedRgbaAstc12X12Khr = ((int)0x93BD) ,
|
CompressedRgbaAstc12X12Khr = ((int)0x93BD) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_3x3x3_OES = 0x93C0
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc3X3x3Oes = ((int)0x93C0) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_4x3x3_OES = 0x93C1
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc4X3x3Oes = ((int)0x93C1) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_4x4x3_OES = 0x93C2
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc4X4x3Oes = ((int)0x93C2) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_4x4x4_OES = 0x93C3
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc4X4x4Oes = ((int)0x93C3) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_5x4x4_OES = 0x93C4
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc5X4x4Oes = ((int)0x93C4) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_5x5x4_OES = 0x93C5
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc5X5x4Oes = ((int)0x93C5) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_5x5x5_OES = 0x93C6
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc5X5x5Oes = ((int)0x93C6) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_6x5x5_OES = 0x93C7
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc6X5x5Oes = ((int)0x93C7) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_6x6x5_OES = 0x93C8
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc6X6x5Oes = ((int)0x93C8) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_ASTC_6x6x6_OES = 0x93C9
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaAstc6X6x6Oes = ((int)0x93C9) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR = 0x93D0
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR = 0x93D0
|
||||||
/// </summary>
|
/// </summary>
|
||||||
CompressedSrgb8Alpha8Astc4X4Khr = ((int)0x93D0) ,
|
CompressedSrgb8Alpha8Astc4X4Khr = ((int)0x93D0) ,
|
||||||
|
@ -21022,6 +21219,46 @@ namespace OpenTK.Graphics.ES30
|
||||||
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR = 0x93DD
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR = 0x93DD
|
||||||
/// </summary>
|
/// </summary>
|
||||||
CompressedSrgb8Alpha8Astc12X12Khr = ((int)0x93DD) ,
|
CompressedSrgb8Alpha8Astc12X12Khr = ((int)0x93DD) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_3x3x3_OES = 0x93E0
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc3X3x3Oes = ((int)0x93E0) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x3x3_OES = 0x93E1
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc4X3x3Oes = ((int)0x93E1) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4x3_OES = 0x93E2
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc4X4x3Oes = ((int)0x93E2) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4x4_OES = 0x93E3
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc4X4x4Oes = ((int)0x93E3) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4x4_OES = 0x93E4
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc5X4x4Oes = ((int)0x93E4) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5x4_OES = 0x93E5
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc5X5x4Oes = ((int)0x93E5) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5x5_OES = 0x93E6
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc5X5x5Oes = ((int)0x93E6) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5x5_OES = 0x93E7
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc6X5x5Oes = ((int)0x93E7) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6x5_OES = 0x93E8
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc6X6x5Oes = ((int)0x93E8) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6x6_OES = 0x93E9
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgb8Alpha8Astc6X6x6Oes = ((int)0x93E9) ,
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -281,7 +281,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal extern static void BindTransformFeedback(OpenTK.Graphics.OpenGL.TransformFeedbackTarget target, UInt32 id);
|
internal extern static void BindTransformFeedback(OpenTK.Graphics.OpenGL.TransformFeedbackTarget target, UInt32 id);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindTransformFeedbackNV", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindTransformFeedbackNV", ExactSpelling = true)]
|
||||||
internal extern static void BindTransformFeedbackNV(OpenTK.Graphics.OpenGL.NvTransformFeedback2 target, UInt32 id);
|
internal extern static void BindTransformFeedbackNV(OpenTK.Graphics.OpenGL.BufferTargetArb target, UInt32 id);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindVertexArray", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBindVertexArray", ExactSpelling = true)]
|
||||||
internal extern static void BindVertexArray(UInt32 array);
|
internal extern static void BindVertexArray(UInt32 array);
|
||||||
|
@ -374,7 +374,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal extern static void BlendEquationSeparate(OpenTK.Graphics.OpenGL.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL.BlendEquationMode modeAlpha);
|
internal extern static void BlendEquationSeparate(OpenTK.Graphics.OpenGL.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL.BlendEquationMode modeAlpha);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendEquationSeparateEXT", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendEquationSeparateEXT", ExactSpelling = true)]
|
||||||
internal extern static void BlendEquationSeparateEXT(OpenTK.Graphics.OpenGL.ExtBlendEquationSeparate modeRGB, OpenTK.Graphics.OpenGL.ExtBlendEquationSeparate modeAlpha);
|
internal extern static void BlendEquationSeparateEXT(OpenTK.Graphics.OpenGL.BlendEquationModeExt modeRGB, OpenTK.Graphics.OpenGL.BlendEquationModeExt modeAlpha);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendEquationSeparatei", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glBlendEquationSeparatei", ExactSpelling = true)]
|
||||||
internal extern static void BlendEquationSeparatei(UInt32 buf, OpenTK.Graphics.OpenGL.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL.BlendEquationMode modeAlpha);
|
internal extern static void BlendEquationSeparatei(UInt32 buf, OpenTK.Graphics.OpenGL.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL.BlendEquationMode modeAlpha);
|
||||||
|
@ -770,16 +770,16 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal extern static unsafe void ColorTableParameterfv(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, Single* @params);
|
internal extern static unsafe void ColorTableParameterfv(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, Single* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorTableParameterfvSGI", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorTableParameterfvSGI", ExactSpelling = true)]
|
||||||
internal extern static unsafe void ColorTableParameterfvSGI(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, Single* @params);
|
internal extern static unsafe void ColorTableParameterfvSGI(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, Single* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorTableParameteriv", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorTableParameteriv", ExactSpelling = true)]
|
||||||
internal extern static unsafe void ColorTableParameteriv(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, Int32* @params);
|
internal extern static unsafe void ColorTableParameteriv(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, Int32* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorTableParameterivSGI", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorTableParameterivSGI", ExactSpelling = true)]
|
||||||
internal extern static unsafe void ColorTableParameterivSGI(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, Int32* @params);
|
internal extern static unsafe void ColorTableParameterivSGI(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, Int32* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorTableSGI", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glColorTableSGI", ExactSpelling = true)]
|
||||||
internal extern static void ColorTableSGI(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr table);
|
internal extern static void ColorTableSGI(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr table);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCombinerInputNV", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCombinerInputNV", ExactSpelling = true)]
|
||||||
internal extern static void CombinerInputNV(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners input, OpenTK.Graphics.OpenGL.NvRegisterCombiners mapping, OpenTK.Graphics.OpenGL.NvRegisterCombiners componentUsage);
|
internal extern static void CombinerInputNV(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners input, OpenTK.Graphics.OpenGL.NvRegisterCombiners mapping, OpenTK.Graphics.OpenGL.NvRegisterCombiners componentUsage);
|
||||||
|
@ -887,37 +887,37 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal extern static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr image);
|
internal extern static void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr image);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionFilter1DEXT", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionFilter1DEXT", ExactSpelling = true)]
|
||||||
internal extern static void ConvolutionFilter1DEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr image);
|
internal extern static void ConvolutionFilter1DEXT(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr image);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionFilter2D", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionFilter2D", ExactSpelling = true)]
|
||||||
internal extern static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr image);
|
internal extern static void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr image);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionFilter2DEXT", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionFilter2DEXT", ExactSpelling = true)]
|
||||||
internal extern static void ConvolutionFilter2DEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr image);
|
internal extern static void ConvolutionFilter2DEXT(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr image);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameterf", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameterf", ExactSpelling = true)]
|
||||||
internal extern static void ConvolutionParameterf(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Single @params);
|
internal extern static void ConvolutionParameterf(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Single @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameterfEXT", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameterfEXT", ExactSpelling = true)]
|
||||||
internal extern static void ConvolutionParameterfEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, Single @params);
|
internal extern static void ConvolutionParameterfEXT(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, Single @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameterfv", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameterfv", ExactSpelling = true)]
|
||||||
internal extern static unsafe void ConvolutionParameterfv(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Single* @params);
|
internal extern static unsafe void ConvolutionParameterfv(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Single* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameterfvEXT", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameterfvEXT", ExactSpelling = true)]
|
||||||
internal extern static unsafe void ConvolutionParameterfvEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, Single* @params);
|
internal extern static unsafe void ConvolutionParameterfvEXT(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, Single* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameteri", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameteri", ExactSpelling = true)]
|
||||||
internal extern static void ConvolutionParameteri(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Int32 @params);
|
internal extern static void ConvolutionParameteri(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Int32 @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameteriEXT", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameteriEXT", ExactSpelling = true)]
|
||||||
internal extern static void ConvolutionParameteriEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, Int32 @params);
|
internal extern static void ConvolutionParameteriEXT(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, Int32 @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameteriv", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameteriv", ExactSpelling = true)]
|
||||||
internal extern static unsafe void ConvolutionParameteriv(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Int32* @params);
|
internal extern static unsafe void ConvolutionParameteriv(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Int32* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameterivEXT", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameterivEXT", ExactSpelling = true)]
|
||||||
internal extern static unsafe void ConvolutionParameterivEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, Int32* @params);
|
internal extern static unsafe void ConvolutionParameterivEXT(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, Int32* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameterxOES", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glConvolutionParameterxOES", ExactSpelling = true)]
|
||||||
internal extern static void ConvolutionParameterxOES(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, int param);
|
internal extern static void ConvolutionParameterxOES(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, int param);
|
||||||
|
@ -938,19 +938,19 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal extern static void CopyColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width);
|
internal extern static void CopyColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyColorTableSGI", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyColorTableSGI", ExactSpelling = true)]
|
||||||
internal extern static void CopyColorTableSGI(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width);
|
internal extern static void CopyColorTableSGI(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyConvolutionFilter1D", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyConvolutionFilter1D", ExactSpelling = true)]
|
||||||
internal extern static void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width);
|
internal extern static void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyConvolutionFilter1DEXT", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyConvolutionFilter1DEXT", ExactSpelling = true)]
|
||||||
internal extern static void CopyConvolutionFilter1DEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width);
|
internal extern static void CopyConvolutionFilter1DEXT(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyConvolutionFilter2D", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyConvolutionFilter2D", ExactSpelling = true)]
|
||||||
internal extern static void CopyConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height);
|
internal extern static void CopyConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyConvolutionFilter2DEXT", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyConvolutionFilter2DEXT", ExactSpelling = true)]
|
||||||
internal extern static void CopyConvolutionFilter2DEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height);
|
internal extern static void CopyConvolutionFilter2DEXT(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyImageSubData", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glCopyImageSubData", ExactSpelling = true)]
|
||||||
internal extern static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.OpenGL.ImageTarget srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.OpenGL.ImageTarget dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth);
|
internal extern static void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.OpenGL.ImageTarget srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.OpenGL.ImageTarget dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth);
|
||||||
|
@ -1109,13 +1109,13 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal extern static void DebugMessageInsertKHR(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, UInt32 id, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 length, String buf);
|
internal extern static void DebugMessageInsertKHR(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, UInt32 id, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 length, String buf);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeformationMap3dSGIX", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeformationMap3dSGIX", ExactSpelling = true)]
|
||||||
internal extern static unsafe void DeformationMap3dSGIX(OpenTK.Graphics.OpenGL.SgixPolynomialFfd target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double w1, Double w2, Int32 wstride, Int32 worder, Double* points);
|
internal extern static unsafe void DeformationMap3dSGIX(OpenTK.Graphics.OpenGL.FfdTargetSgix target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double w1, Double w2, Int32 wstride, Int32 worder, Double* points);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeformationMap3fSGIX", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeformationMap3fSGIX", ExactSpelling = true)]
|
||||||
internal extern static unsafe void DeformationMap3fSGIX(OpenTK.Graphics.OpenGL.SgixPolynomialFfd target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single w1, Single w2, Int32 wstride, Int32 worder, Single* points);
|
internal extern static unsafe void DeformationMap3fSGIX(OpenTK.Graphics.OpenGL.FfdTargetSgix target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single w1, Single w2, Int32 wstride, Int32 worder, Single* points);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeformSGIX", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeformSGIX", ExactSpelling = true)]
|
||||||
internal extern static void DeformSGIX(UInt32 mask);
|
internal extern static void DeformSGIX(OpenTK.Graphics.OpenGL.FfdMaskSgix mask);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteAsyncMarkersSGIX", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glDeleteAsyncMarkersSGIX", ExactSpelling = true)]
|
||||||
internal extern static void DeleteAsyncMarkersSGIX(UInt32 marker, Int32 range);
|
internal extern static void DeleteAsyncMarkersSGIX(UInt32 marker, Int32 range);
|
||||||
|
@ -1670,7 +1670,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal extern static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, IntPtr pointer);
|
internal extern static void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, IntPtr pointer);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogCoordPointerEXT", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogCoordPointerEXT", ExactSpelling = true)]
|
||||||
internal extern static void FogCoordPointerEXT(OpenTK.Graphics.OpenGL.ExtFogCoord type, Int32 stride, IntPtr pointer);
|
internal extern static void FogCoordPointerEXT(OpenTK.Graphics.OpenGL.FogPointerTypeExt type, Int32 stride, IntPtr pointer);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogCoordPointerListIBM", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFogCoordPointerListIBM", ExactSpelling = true)]
|
||||||
internal extern static void FogCoordPointerListIBM(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride);
|
internal extern static void FogCoordPointerListIBM(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride);
|
||||||
|
@ -1712,16 +1712,16 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal extern static unsafe void FragmentLightivSGIX(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Int32* @params);
|
internal extern static unsafe void FragmentLightivSGIX(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Int32* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFragmentLightModelfSGIX", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFragmentLightModelfSGIX", ExactSpelling = true)]
|
||||||
internal extern static void FragmentLightModelfSGIX(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Single param);
|
internal extern static void FragmentLightModelfSGIX(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, Single param);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFragmentLightModelfvSGIX", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFragmentLightModelfvSGIX", ExactSpelling = true)]
|
||||||
internal extern static unsafe void FragmentLightModelfvSGIX(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Single* @params);
|
internal extern static unsafe void FragmentLightModelfvSGIX(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, Single* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFragmentLightModeliSGIX", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFragmentLightModeliSGIX", ExactSpelling = true)]
|
||||||
internal extern static void FragmentLightModeliSGIX(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Int32 param);
|
internal extern static void FragmentLightModeliSGIX(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, Int32 param);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFragmentLightModelivSGIX", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFragmentLightModelivSGIX", ExactSpelling = true)]
|
||||||
internal extern static unsafe void FragmentLightModelivSGIX(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Int32* @params);
|
internal extern static unsafe void FragmentLightModelivSGIX(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, Int32* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFragmentMaterialfSGIX", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glFragmentMaterialfSGIX", ExactSpelling = true)]
|
||||||
internal extern static void FragmentMaterialfSGIX(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Single param);
|
internal extern static void FragmentMaterialfSGIX(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Single param);
|
||||||
|
@ -1991,7 +1991,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal extern static unsafe void GetBufferParameteriv(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int32* @params);
|
internal extern static unsafe void GetBufferParameteriv(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int32* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetBufferParameterivARB", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetBufferParameterivARB", ExactSpelling = true)]
|
||||||
internal extern static unsafe void GetBufferParameterivARB(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [OutAttribute] Int32* @params);
|
internal extern static unsafe void GetBufferParameterivARB(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [OutAttribute] Int32* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetBufferParameterui64vNV", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetBufferParameterui64vNV", ExactSpelling = true)]
|
||||||
internal extern static unsafe void GetBufferParameterui64vNV(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] UInt64* @params);
|
internal extern static unsafe void GetBufferParameterui64vNV(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] UInt64* @params);
|
||||||
|
@ -2000,7 +2000,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal extern static void GetBufferPointerv(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferPointer pname, [OutAttribute] IntPtr @params);
|
internal extern static void GetBufferPointerv(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferPointer pname, [OutAttribute] IntPtr @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetBufferPointervARB", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetBufferPointervARB", ExactSpelling = true)]
|
||||||
internal extern static void GetBufferPointervARB(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [OutAttribute] IntPtr @params);
|
internal extern static void GetBufferPointervARB(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [OutAttribute] IntPtr @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetBufferSubData", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetBufferSubData", ExactSpelling = true)]
|
||||||
internal extern static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [OutAttribute] IntPtr data);
|
internal extern static void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [OutAttribute] IntPtr data);
|
||||||
|
@ -2030,7 +2030,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal extern static unsafe void GetColorTableParameterfvEXT(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute] Single* @params);
|
internal extern static unsafe void GetColorTableParameterfvEXT(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute] Single* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetColorTableParameterfvSGI", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetColorTableParameterfvSGI", ExactSpelling = true)]
|
||||||
internal extern static unsafe void GetColorTableParameterfvSGI(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [OutAttribute] Single* @params);
|
internal extern static unsafe void GetColorTableParameterfvSGI(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute] Single* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetColorTableParameteriv", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetColorTableParameteriv", ExactSpelling = true)]
|
||||||
internal extern static unsafe void GetColorTableParameteriv(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute] Int32* @params);
|
internal extern static unsafe void GetColorTableParameteriv(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute] Int32* @params);
|
||||||
|
@ -2039,10 +2039,10 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal extern static unsafe void GetColorTableParameterivEXT(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute] Int32* @params);
|
internal extern static unsafe void GetColorTableParameterivEXT(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute] Int32* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetColorTableParameterivSGI", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetColorTableParameterivSGI", ExactSpelling = true)]
|
||||||
internal extern static unsafe void GetColorTableParameterivSGI(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [OutAttribute] Int32* @params);
|
internal extern static unsafe void GetColorTableParameterivSGI(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute] Int32* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetColorTableSGI", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetColorTableSGI", ExactSpelling = true)]
|
||||||
internal extern static void GetColorTableSGI(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr table);
|
internal extern static void GetColorTableSGI(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr table);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetCombinerInputParameterfvNV", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetCombinerInputParameterfvNV", ExactSpelling = true)]
|
||||||
internal extern static unsafe void GetCombinerInputParameterfvNV(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute] Single* @params);
|
internal extern static unsafe void GetCombinerInputParameterfvNV(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute] Single* @params);
|
||||||
|
@ -2075,19 +2075,19 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal extern static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr image);
|
internal extern static void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr image);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetConvolutionFilterEXT", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetConvolutionFilterEXT", ExactSpelling = true)]
|
||||||
internal extern static void GetConvolutionFilterEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr image);
|
internal extern static void GetConvolutionFilterEXT(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr image);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetConvolutionParameterfv", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetConvolutionParameterfv", ExactSpelling = true)]
|
||||||
internal extern static unsafe void GetConvolutionParameterfv(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute] Single* @params);
|
internal extern static unsafe void GetConvolutionParameterfv(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute] Single* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetConvolutionParameterfvEXT", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetConvolutionParameterfvEXT", ExactSpelling = true)]
|
||||||
internal extern static unsafe void GetConvolutionParameterfvEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [OutAttribute] Single* @params);
|
internal extern static unsafe void GetConvolutionParameterfvEXT(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute] Single* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetConvolutionParameteriv", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetConvolutionParameteriv", ExactSpelling = true)]
|
||||||
internal extern static unsafe void GetConvolutionParameteriv(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute] Int32* @params);
|
internal extern static unsafe void GetConvolutionParameteriv(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute] Int32* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetConvolutionParameterivEXT", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetConvolutionParameterivEXT", ExactSpelling = true)]
|
||||||
internal extern static unsafe void GetConvolutionParameterivEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [OutAttribute] Int32* @params);
|
internal extern static unsafe void GetConvolutionParameterivEXT(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute] Int32* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetConvolutionParameterxvOES", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetConvolutionParameterxvOES", ExactSpelling = true)]
|
||||||
internal extern static unsafe void GetConvolutionParameterxvOES(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] int* @params);
|
internal extern static unsafe void GetConvolutionParameterxvOES(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] int* @params);
|
||||||
|
@ -2192,19 +2192,19 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal extern static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr values);
|
internal extern static void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr values);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetHistogramEXT", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetHistogramEXT", ExactSpelling = true)]
|
||||||
internal extern static void GetHistogramEXT(OpenTK.Graphics.OpenGL.ExtHistogram target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr values);
|
internal extern static void GetHistogramEXT(OpenTK.Graphics.OpenGL.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr values);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetHistogramParameterfv", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetHistogramParameterfv", ExactSpelling = true)]
|
||||||
internal extern static unsafe void GetHistogramParameterfv(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute] Single* @params);
|
internal extern static unsafe void GetHistogramParameterfv(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute] Single* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetHistogramParameterfvEXT", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetHistogramParameterfvEXT", ExactSpelling = true)]
|
||||||
internal extern static unsafe void GetHistogramParameterfvEXT(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute] Single* @params);
|
internal extern static unsafe void GetHistogramParameterfvEXT(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute] Single* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetHistogramParameteriv", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetHistogramParameteriv", ExactSpelling = true)]
|
||||||
internal extern static unsafe void GetHistogramParameteriv(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute] Int32* @params);
|
internal extern static unsafe void GetHistogramParameteriv(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute] Int32* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetHistogramParameterivEXT", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetHistogramParameterivEXT", ExactSpelling = true)]
|
||||||
internal extern static unsafe void GetHistogramParameterivEXT(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute] Int32* @params);
|
internal extern static unsafe void GetHistogramParameterivEXT(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute] Int32* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetHistogramParameterxvOES", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetHistogramParameterxvOES", ExactSpelling = true)]
|
||||||
internal extern static unsafe void GetHistogramParameterxvOES(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] int* @params);
|
internal extern static unsafe void GetHistogramParameterxvOES(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] int* @params);
|
||||||
|
@ -2333,19 +2333,19 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal extern static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr values);
|
internal extern static void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr values);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMinmaxEXT", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMinmaxEXT", ExactSpelling = true)]
|
||||||
internal extern static void GetMinmaxEXT(OpenTK.Graphics.OpenGL.ExtHistogram target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr values);
|
internal extern static void GetMinmaxEXT(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr values);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMinmaxParameterfv", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMinmaxParameterfv", ExactSpelling = true)]
|
||||||
internal extern static unsafe void GetMinmaxParameterfv(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute] Single* @params);
|
internal extern static unsafe void GetMinmaxParameterfv(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute] Single* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMinmaxParameterfvEXT", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMinmaxParameterfvEXT", ExactSpelling = true)]
|
||||||
internal extern static unsafe void GetMinmaxParameterfvEXT(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute] Single* @params);
|
internal extern static unsafe void GetMinmaxParameterfvEXT(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute] Single* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMinmaxParameteriv", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMinmaxParameteriv", ExactSpelling = true)]
|
||||||
internal extern static unsafe void GetMinmaxParameteriv(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute] Int32* @params);
|
internal extern static unsafe void GetMinmaxParameteriv(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute] Int32* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMinmaxParameterivEXT", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMinmaxParameterivEXT", ExactSpelling = true)]
|
||||||
internal extern static unsafe void GetMinmaxParameterivEXT(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute] Int32* @params);
|
internal extern static unsafe void GetMinmaxParameterivEXT(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute] Int32* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMultisamplefv", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetMultisamplefv", ExactSpelling = true)]
|
||||||
internal extern static unsafe void GetMultisamplefv(OpenTK.Graphics.OpenGL.GetMultisamplePName pname, UInt32 index, [OutAttribute] Single* val);
|
internal extern static unsafe void GetMultisamplefv(OpenTK.Graphics.OpenGL.GetMultisamplePName pname, UInt32 index, [OutAttribute] Single* val);
|
||||||
|
@ -2594,10 +2594,10 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal extern static unsafe void GetPixelMapxv(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [OutAttribute] int* values);
|
internal extern static unsafe void GetPixelMapxv(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [OutAttribute] int* values);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetPixelTexGenParameterfvSGIS", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetPixelTexGenParameterfvSGIS", ExactSpelling = true)]
|
||||||
internal extern static unsafe void GetPixelTexGenParameterfvSGIS(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [OutAttribute] Single* @params);
|
internal extern static unsafe void GetPixelTexGenParameterfvSGIS(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute] Single* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetPixelTexGenParameterivSGIS", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetPixelTexGenParameterivSGIS", ExactSpelling = true)]
|
||||||
internal extern static unsafe void GetPixelTexGenParameterivSGIS(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [OutAttribute] Int32* @params);
|
internal extern static unsafe void GetPixelTexGenParameterivSGIS(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute] Int32* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetPixelTransformParameterfvEXT", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetPixelTransformParameterfvEXT", ExactSpelling = true)]
|
||||||
internal extern static unsafe void GetPixelTransformParameterfvEXT(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute] Single* @params);
|
internal extern static unsafe void GetPixelTransformParameterfvEXT(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute] Single* @params);
|
||||||
|
@ -2771,7 +2771,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal extern static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [OutAttribute] IntPtr column, [OutAttribute] IntPtr span);
|
internal extern static void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [OutAttribute] IntPtr column, [OutAttribute] IntPtr span);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetSeparableFilterEXT", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetSeparableFilterEXT", ExactSpelling = true)]
|
||||||
internal extern static void GetSeparableFilterEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [OutAttribute] IntPtr column, [OutAttribute] IntPtr span);
|
internal extern static void GetSeparableFilterEXT(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [OutAttribute] IntPtr column, [OutAttribute] IntPtr span);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetShaderInfoLog", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glGetShaderInfoLog", ExactSpelling = true)]
|
||||||
internal extern static unsafe void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog);
|
internal extern static unsafe void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog);
|
||||||
|
@ -3125,7 +3125,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal extern static void Histogram(OpenTK.Graphics.OpenGL.HistogramTarget target, Int32 width, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink);
|
internal extern static void Histogram(OpenTK.Graphics.OpenGL.HistogramTarget target, Int32 width, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glHistogramEXT", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glHistogramEXT", ExactSpelling = true)]
|
||||||
internal extern static void HistogramEXT(OpenTK.Graphics.OpenGL.ExtHistogram target, Int32 width, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink);
|
internal extern static void HistogramEXT(OpenTK.Graphics.OpenGL.HistogramTargetExt target, Int32 width, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIglooInterfaceSGIX", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glIglooInterfaceSGIX", ExactSpelling = true)]
|
||||||
internal extern static void IglooInterfaceSGIX(OpenTK.Graphics.OpenGL.SgixIglooInterface pname, IntPtr @params);
|
internal extern static void IglooInterfaceSGIX(OpenTK.Graphics.OpenGL.SgixIglooInterface pname, IntPtr @params);
|
||||||
|
@ -3374,7 +3374,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal extern static void LabelObjectEXT(OpenTK.Graphics.OpenGL.ExtDebugLabel type, UInt32 @object, Int32 length, String label);
|
internal extern static void LabelObjectEXT(OpenTK.Graphics.OpenGL.ExtDebugLabel type, UInt32 @object, Int32 length, String label);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLightEnviSGIX", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLightEnviSGIX", ExactSpelling = true)]
|
||||||
internal extern static void LightEnviSGIX(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Int32 param);
|
internal extern static void LightEnviSGIX(OpenTK.Graphics.OpenGL.LightEnvParameterSgix pname, Int32 param);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLightf", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLightf", ExactSpelling = true)]
|
||||||
internal extern static void Lightf(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Single param);
|
internal extern static void Lightf(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Single param);
|
||||||
|
@ -3446,7 +3446,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal extern static void LoadIdentity();
|
internal extern static void LoadIdentity();
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLoadIdentityDeformationMapSGIX", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLoadIdentityDeformationMapSGIX", ExactSpelling = true)]
|
||||||
internal extern static void LoadIdentityDeformationMapSGIX(UInt32 mask);
|
internal extern static void LoadIdentityDeformationMapSGIX(OpenTK.Graphics.OpenGL.FfdMaskSgix mask);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLoadMatrixd", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glLoadMatrixd", ExactSpelling = true)]
|
||||||
internal extern static unsafe void LoadMatrixd(Double* m);
|
internal extern static unsafe void LoadMatrixd(Double* m);
|
||||||
|
@ -3542,7 +3542,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal extern static IntPtr MapBuffer(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferAccess access);
|
internal extern static IntPtr MapBuffer(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferAccess access);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMapBufferARB", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMapBufferARB", ExactSpelling = true)]
|
||||||
internal extern static IntPtr MapBufferARB(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.ArbVertexBufferObject access);
|
internal extern static IntPtr MapBufferARB(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferAccessArb access);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMapBufferRange", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMapBufferRange", ExactSpelling = true)]
|
||||||
internal extern static IntPtr MapBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL.BufferAccessMask access);
|
internal extern static IntPtr MapBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL.BufferAccessMask access);
|
||||||
|
@ -3698,7 +3698,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal extern static void Minmax(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink);
|
internal extern static void Minmax(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMinmaxEXT", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMinmaxEXT", ExactSpelling = true)]
|
||||||
internal extern static void MinmaxEXT(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink);
|
internal extern static void MinmaxEXT(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMinSampleShading", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glMinSampleShading", ExactSpelling = true)]
|
||||||
internal extern static void MinSampleShading(Single value);
|
internal extern static void MinSampleShading(Single value);
|
||||||
|
@ -4460,16 +4460,16 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal extern static void PixelStorex(OpenTK.Graphics.OpenGL.OesFixedPoint pname, int param);
|
internal extern static void PixelStorex(OpenTK.Graphics.OpenGL.OesFixedPoint pname, int param);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelTexGenParameterfSGIS", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelTexGenParameterfSGIS", ExactSpelling = true)]
|
||||||
internal extern static void PixelTexGenParameterfSGIS(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, Single param);
|
internal extern static void PixelTexGenParameterfSGIS(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, Single param);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelTexGenParameterfvSGIS", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelTexGenParameterfvSGIS", ExactSpelling = true)]
|
||||||
internal extern static unsafe void PixelTexGenParameterfvSGIS(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, Single* @params);
|
internal extern static unsafe void PixelTexGenParameterfvSGIS(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, Single* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelTexGenParameteriSGIS", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelTexGenParameteriSGIS", ExactSpelling = true)]
|
||||||
internal extern static void PixelTexGenParameteriSGIS(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, Int32 param);
|
internal extern static void PixelTexGenParameteriSGIS(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, Int32 param);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelTexGenParameterivSGIS", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelTexGenParameterivSGIS", ExactSpelling = true)]
|
||||||
internal extern static unsafe void PixelTexGenParameterivSGIS(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, Int32* @params);
|
internal extern static unsafe void PixelTexGenParameterivSGIS(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, Int32* @params);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelTexGenSGIX", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glPixelTexGenSGIX", ExactSpelling = true)]
|
||||||
internal extern static void PixelTexGenSGIX(OpenTK.Graphics.OpenGL.SgixPixelTexture mode);
|
internal extern static void PixelTexGenSGIX(OpenTK.Graphics.OpenGL.SgixPixelTexture mode);
|
||||||
|
@ -5152,6 +5152,9 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glQueryMatrixxOES", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glQueryMatrixxOES", ExactSpelling = true)]
|
||||||
internal extern static unsafe Int32 QueryMatrixxOES([OutAttribute] int* mantissa, [OutAttribute] Int32* exponent);
|
internal extern static unsafe Int32 QueryMatrixxOES([OutAttribute] int* mantissa, [OutAttribute] Int32* exponent);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glQueryObjectParameteruiAMD", ExactSpelling = true)]
|
||||||
|
internal extern static void QueryObjectParameteruiAMD(OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent target, UInt32 id, OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent pname, OpenTK.Graphics.OpenGL.OcclusionQueryEventMaskAmd param);
|
||||||
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRasterPos2d", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glRasterPos2d", ExactSpelling = true)]
|
||||||
internal extern static void RasterPos2d(Double x, Double y);
|
internal extern static void RasterPos2d(Double x, Double y);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
|
@ -5384,13 +5387,13 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal extern static void ResetHistogram(OpenTK.Graphics.OpenGL.HistogramTarget target);
|
internal extern static void ResetHistogram(OpenTK.Graphics.OpenGL.HistogramTarget target);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glResetHistogramEXT", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glResetHistogramEXT", ExactSpelling = true)]
|
||||||
internal extern static void ResetHistogramEXT(OpenTK.Graphics.OpenGL.ExtHistogram target);
|
internal extern static void ResetHistogramEXT(OpenTK.Graphics.OpenGL.HistogramTargetExt target);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glResetMinmax", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glResetMinmax", ExactSpelling = true)]
|
||||||
internal extern static void ResetMinmax(OpenTK.Graphics.OpenGL.MinmaxTarget target);
|
internal extern static void ResetMinmax(OpenTK.Graphics.OpenGL.MinmaxTarget target);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glResetMinmaxEXT", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glResetMinmaxEXT", ExactSpelling = true)]
|
||||||
internal extern static void ResetMinmaxEXT(OpenTK.Graphics.OpenGL.ExtHistogram target);
|
internal extern static void ResetMinmaxEXT(OpenTK.Graphics.OpenGL.MinmaxTargetExt target);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glResizeBuffersMESA", CharSet = CharSet.Auto)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glResizeBuffersMESA", CharSet = CharSet.Auto)]
|
||||||
internal extern static void ResizeBuffersMESA();
|
internal extern static void ResizeBuffersMESA();
|
||||||
|
@ -5441,7 +5444,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal extern static void SamplePatternEXT(OpenTK.Graphics.OpenGL.ExtMultisample pattern);
|
internal extern static void SamplePatternEXT(OpenTK.Graphics.OpenGL.ExtMultisample pattern);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSamplePatternSGIS", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSamplePatternSGIS", ExactSpelling = true)]
|
||||||
internal extern static void SamplePatternSGIS(OpenTK.Graphics.OpenGL.SgisMultisample pattern);
|
internal extern static void SamplePatternSGIS(OpenTK.Graphics.OpenGL.SamplePatternSgis pattern);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSamplerParameterf", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSamplerParameterf", ExactSpelling = true)]
|
||||||
internal extern static void SamplerParameterf(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, Single param);
|
internal extern static void SamplerParameterf(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, Single param);
|
||||||
|
@ -5612,7 +5615,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal extern static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr row, IntPtr column);
|
internal extern static void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr row, IntPtr column);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSeparableFilter2DEXT", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSeparableFilter2DEXT", ExactSpelling = true)]
|
||||||
internal extern static void SeparableFilter2DEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr row, IntPtr column);
|
internal extern static void SeparableFilter2DEXT(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr row, IntPtr column);
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSetFenceAPPLE", ExactSpelling = true)]
|
[System.Runtime.InteropServices.DllImport(GL.Library, EntryPoint = "glSetFenceAPPLE", ExactSpelling = true)]
|
||||||
internal extern static void SetFenceAPPLE(UInt32 fence);
|
internal extern static void SetFenceAPPLE(UInt32 fence);
|
||||||
|
|
|
@ -279,7 +279,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal delegate void BindTransformFeedback(OpenTK.Graphics.OpenGL.TransformFeedbackTarget target, UInt32 id);
|
internal delegate void BindTransformFeedback(OpenTK.Graphics.OpenGL.TransformFeedbackTarget target, UInt32 id);
|
||||||
internal static BindTransformFeedback glBindTransformFeedback;
|
internal static BindTransformFeedback glBindTransformFeedback;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void BindTransformFeedbackNV(OpenTK.Graphics.OpenGL.NvTransformFeedback2 target, UInt32 id);
|
internal delegate void BindTransformFeedbackNV(OpenTK.Graphics.OpenGL.BufferTargetArb target, UInt32 id);
|
||||||
internal static BindTransformFeedbackNV glBindTransformFeedbackNV;
|
internal static BindTransformFeedbackNV glBindTransformFeedbackNV;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void BindVertexArray(UInt32 array);
|
internal delegate void BindVertexArray(UInt32 array);
|
||||||
|
@ -372,7 +372,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal delegate void BlendEquationSeparate(OpenTK.Graphics.OpenGL.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL.BlendEquationMode modeAlpha);
|
internal delegate void BlendEquationSeparate(OpenTK.Graphics.OpenGL.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL.BlendEquationMode modeAlpha);
|
||||||
internal static BlendEquationSeparate glBlendEquationSeparate;
|
internal static BlendEquationSeparate glBlendEquationSeparate;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void BlendEquationSeparateEXT(OpenTK.Graphics.OpenGL.ExtBlendEquationSeparate modeRGB, OpenTK.Graphics.OpenGL.ExtBlendEquationSeparate modeAlpha);
|
internal delegate void BlendEquationSeparateEXT(OpenTK.Graphics.OpenGL.BlendEquationModeExt modeRGB, OpenTK.Graphics.OpenGL.BlendEquationModeExt modeAlpha);
|
||||||
internal static BlendEquationSeparateEXT glBlendEquationSeparateEXT;
|
internal static BlendEquationSeparateEXT glBlendEquationSeparateEXT;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void BlendEquationSeparatei(UInt32 buf, OpenTK.Graphics.OpenGL.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL.BlendEquationMode modeAlpha);
|
internal delegate void BlendEquationSeparatei(UInt32 buf, OpenTK.Graphics.OpenGL.BlendEquationMode modeRGB, OpenTK.Graphics.OpenGL.BlendEquationMode modeAlpha);
|
||||||
|
@ -768,16 +768,16 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal unsafe delegate void ColorTableParameterfv(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, Single* @params);
|
internal unsafe delegate void ColorTableParameterfv(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, Single* @params);
|
||||||
internal unsafe static ColorTableParameterfv glColorTableParameterfv;
|
internal unsafe static ColorTableParameterfv glColorTableParameterfv;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void ColorTableParameterfvSGI(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, Single* @params);
|
internal unsafe delegate void ColorTableParameterfvSGI(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, Single* @params);
|
||||||
internal unsafe static ColorTableParameterfvSGI glColorTableParameterfvSGI;
|
internal unsafe static ColorTableParameterfvSGI glColorTableParameterfvSGI;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void ColorTableParameteriv(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, Int32* @params);
|
internal unsafe delegate void ColorTableParameteriv(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.ColorTableParameterPName pname, Int32* @params);
|
||||||
internal unsafe static ColorTableParameteriv glColorTableParameteriv;
|
internal unsafe static ColorTableParameteriv glColorTableParameteriv;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void ColorTableParameterivSGI(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, Int32* @params);
|
internal unsafe delegate void ColorTableParameterivSGI(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.ColorTableParameterPNameSgi pname, Int32* @params);
|
||||||
internal unsafe static ColorTableParameterivSGI glColorTableParameterivSGI;
|
internal unsafe static ColorTableParameterivSGI glColorTableParameterivSGI;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void ColorTableSGI(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr table);
|
internal delegate void ColorTableSGI(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr table);
|
||||||
internal static ColorTableSGI glColorTableSGI;
|
internal static ColorTableSGI glColorTableSGI;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void CombinerInputNV(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners input, OpenTK.Graphics.OpenGL.NvRegisterCombiners mapping, OpenTK.Graphics.OpenGL.NvRegisterCombiners componentUsage);
|
internal delegate void CombinerInputNV(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners input, OpenTK.Graphics.OpenGL.NvRegisterCombiners mapping, OpenTK.Graphics.OpenGL.NvRegisterCombiners componentUsage);
|
||||||
|
@ -885,37 +885,37 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal delegate void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr image);
|
internal delegate void ConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr image);
|
||||||
internal static ConvolutionFilter1D glConvolutionFilter1D;
|
internal static ConvolutionFilter1D glConvolutionFilter1D;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void ConvolutionFilter1DEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr image);
|
internal delegate void ConvolutionFilter1DEXT(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr image);
|
||||||
internal static ConvolutionFilter1DEXT glConvolutionFilter1DEXT;
|
internal static ConvolutionFilter1DEXT glConvolutionFilter1DEXT;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr image);
|
internal delegate void ConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr image);
|
||||||
internal static ConvolutionFilter2D glConvolutionFilter2D;
|
internal static ConvolutionFilter2D glConvolutionFilter2D;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void ConvolutionFilter2DEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr image);
|
internal delegate void ConvolutionFilter2DEXT(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr image);
|
||||||
internal static ConvolutionFilter2DEXT glConvolutionFilter2DEXT;
|
internal static ConvolutionFilter2DEXT glConvolutionFilter2DEXT;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void ConvolutionParameterf(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Single @params);
|
internal delegate void ConvolutionParameterf(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Single @params);
|
||||||
internal static ConvolutionParameterf glConvolutionParameterf;
|
internal static ConvolutionParameterf glConvolutionParameterf;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void ConvolutionParameterfEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, Single @params);
|
internal delegate void ConvolutionParameterfEXT(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, Single @params);
|
||||||
internal static ConvolutionParameterfEXT glConvolutionParameterfEXT;
|
internal static ConvolutionParameterfEXT glConvolutionParameterfEXT;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void ConvolutionParameterfv(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Single* @params);
|
internal unsafe delegate void ConvolutionParameterfv(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Single* @params);
|
||||||
internal unsafe static ConvolutionParameterfv glConvolutionParameterfv;
|
internal unsafe static ConvolutionParameterfv glConvolutionParameterfv;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void ConvolutionParameterfvEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, Single* @params);
|
internal unsafe delegate void ConvolutionParameterfvEXT(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, Single* @params);
|
||||||
internal unsafe static ConvolutionParameterfvEXT glConvolutionParameterfvEXT;
|
internal unsafe static ConvolutionParameterfvEXT glConvolutionParameterfvEXT;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void ConvolutionParameteri(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Int32 @params);
|
internal delegate void ConvolutionParameteri(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Int32 @params);
|
||||||
internal static ConvolutionParameteri glConvolutionParameteri;
|
internal static ConvolutionParameteri glConvolutionParameteri;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void ConvolutionParameteriEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, Int32 @params);
|
internal delegate void ConvolutionParameteriEXT(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, Int32 @params);
|
||||||
internal static ConvolutionParameteriEXT glConvolutionParameteriEXT;
|
internal static ConvolutionParameteriEXT glConvolutionParameteriEXT;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void ConvolutionParameteriv(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Int32* @params);
|
internal unsafe delegate void ConvolutionParameteriv(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.ConvolutionParameter pname, Int32* @params);
|
||||||
internal unsafe static ConvolutionParameteriv glConvolutionParameteriv;
|
internal unsafe static ConvolutionParameteriv glConvolutionParameteriv;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void ConvolutionParameterivEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, Int32* @params);
|
internal unsafe delegate void ConvolutionParameterivEXT(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, Int32* @params);
|
||||||
internal unsafe static ConvolutionParameterivEXT glConvolutionParameterivEXT;
|
internal unsafe static ConvolutionParameterivEXT glConvolutionParameterivEXT;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void ConvolutionParameterxOES(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, int param);
|
internal delegate void ConvolutionParameterxOES(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, int param);
|
||||||
|
@ -936,19 +936,19 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal delegate void CopyColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width);
|
internal delegate void CopyColorTable(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width);
|
||||||
internal static CopyColorTable glCopyColorTable;
|
internal static CopyColorTable glCopyColorTable;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void CopyColorTableSGI(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width);
|
internal delegate void CopyColorTableSGI(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width);
|
||||||
internal static CopyColorTableSGI glCopyColorTableSGI;
|
internal static CopyColorTableSGI glCopyColorTableSGI;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width);
|
internal delegate void CopyConvolutionFilter1D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width);
|
||||||
internal static CopyConvolutionFilter1D glCopyConvolutionFilter1D;
|
internal static CopyConvolutionFilter1D glCopyConvolutionFilter1D;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void CopyConvolutionFilter1DEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width);
|
internal delegate void CopyConvolutionFilter1DEXT(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width);
|
||||||
internal static CopyConvolutionFilter1DEXT glCopyConvolutionFilter1DEXT;
|
internal static CopyConvolutionFilter1DEXT glCopyConvolutionFilter1DEXT;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void CopyConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height);
|
internal delegate void CopyConvolutionFilter2D(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height);
|
||||||
internal static CopyConvolutionFilter2D glCopyConvolutionFilter2D;
|
internal static CopyConvolutionFilter2D glCopyConvolutionFilter2D;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void CopyConvolutionFilter2DEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height);
|
internal delegate void CopyConvolutionFilter2DEXT(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 x, Int32 y, Int32 width, Int32 height);
|
||||||
internal static CopyConvolutionFilter2DEXT glCopyConvolutionFilter2DEXT;
|
internal static CopyConvolutionFilter2DEXT glCopyConvolutionFilter2DEXT;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.OpenGL.ImageTarget srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.OpenGL.ImageTarget dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth);
|
internal delegate void CopyImageSubData(UInt32 srcName, OpenTK.Graphics.OpenGL.ImageTarget srcTarget, Int32 srcLevel, Int32 srcX, Int32 srcY, Int32 srcZ, UInt32 dstName, OpenTK.Graphics.OpenGL.ImageTarget dstTarget, Int32 dstLevel, Int32 dstX, Int32 dstY, Int32 dstZ, Int32 srcWidth, Int32 srcHeight, Int32 srcDepth);
|
||||||
|
@ -1107,13 +1107,13 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal delegate void DebugMessageInsertKHR(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, UInt32 id, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 length, String buf);
|
internal delegate void DebugMessageInsertKHR(OpenTK.Graphics.OpenGL.KhrDebug source, OpenTK.Graphics.OpenGL.KhrDebug type, UInt32 id, OpenTK.Graphics.OpenGL.KhrDebug severity, Int32 length, String buf);
|
||||||
internal static DebugMessageInsertKHR glDebugMessageInsertKHR;
|
internal static DebugMessageInsertKHR glDebugMessageInsertKHR;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void DeformationMap3dSGIX(OpenTK.Graphics.OpenGL.SgixPolynomialFfd target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double w1, Double w2, Int32 wstride, Int32 worder, Double* points);
|
internal unsafe delegate void DeformationMap3dSGIX(OpenTK.Graphics.OpenGL.FfdTargetSgix target, Double u1, Double u2, Int32 ustride, Int32 uorder, Double v1, Double v2, Int32 vstride, Int32 vorder, Double w1, Double w2, Int32 wstride, Int32 worder, Double* points);
|
||||||
internal unsafe static DeformationMap3dSGIX glDeformationMap3dSGIX;
|
internal unsafe static DeformationMap3dSGIX glDeformationMap3dSGIX;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void DeformationMap3fSGIX(OpenTK.Graphics.OpenGL.SgixPolynomialFfd target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single w1, Single w2, Int32 wstride, Int32 worder, Single* points);
|
internal unsafe delegate void DeformationMap3fSGIX(OpenTK.Graphics.OpenGL.FfdTargetSgix target, Single u1, Single u2, Int32 ustride, Int32 uorder, Single v1, Single v2, Int32 vstride, Int32 vorder, Single w1, Single w2, Int32 wstride, Int32 worder, Single* points);
|
||||||
internal unsafe static DeformationMap3fSGIX glDeformationMap3fSGIX;
|
internal unsafe static DeformationMap3fSGIX glDeformationMap3fSGIX;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void DeformSGIX(UInt32 mask);
|
internal delegate void DeformSGIX(OpenTK.Graphics.OpenGL.FfdMaskSgix mask);
|
||||||
internal static DeformSGIX glDeformSGIX;
|
internal static DeformSGIX glDeformSGIX;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void DeleteAsyncMarkersSGIX(UInt32 marker, Int32 range);
|
internal delegate void DeleteAsyncMarkersSGIX(UInt32 marker, Int32 range);
|
||||||
|
@ -1668,7 +1668,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal delegate void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, IntPtr pointer);
|
internal delegate void FogCoordPointer(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, IntPtr pointer);
|
||||||
internal static FogCoordPointer glFogCoordPointer;
|
internal static FogCoordPointer glFogCoordPointer;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void FogCoordPointerEXT(OpenTK.Graphics.OpenGL.ExtFogCoord type, Int32 stride, IntPtr pointer);
|
internal delegate void FogCoordPointerEXT(OpenTK.Graphics.OpenGL.FogPointerTypeExt type, Int32 stride, IntPtr pointer);
|
||||||
internal static FogCoordPointerEXT glFogCoordPointerEXT;
|
internal static FogCoordPointerEXT glFogCoordPointerEXT;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void FogCoordPointerListIBM(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride);
|
internal delegate void FogCoordPointerListIBM(OpenTK.Graphics.OpenGL.FogPointerType type, Int32 stride, IntPtr pointer, Int32 ptrstride);
|
||||||
|
@ -1710,16 +1710,16 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal unsafe delegate void FragmentLightivSGIX(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Int32* @params);
|
internal unsafe delegate void FragmentLightivSGIX(OpenTK.Graphics.OpenGL.SgixFragmentLighting light, OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Int32* @params);
|
||||||
internal unsafe static FragmentLightivSGIX glFragmentLightivSGIX;
|
internal unsafe static FragmentLightivSGIX glFragmentLightivSGIX;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void FragmentLightModelfSGIX(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Single param);
|
internal delegate void FragmentLightModelfSGIX(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, Single param);
|
||||||
internal static FragmentLightModelfSGIX glFragmentLightModelfSGIX;
|
internal static FragmentLightModelfSGIX glFragmentLightModelfSGIX;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void FragmentLightModelfvSGIX(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Single* @params);
|
internal unsafe delegate void FragmentLightModelfvSGIX(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, Single* @params);
|
||||||
internal unsafe static FragmentLightModelfvSGIX glFragmentLightModelfvSGIX;
|
internal unsafe static FragmentLightModelfvSGIX glFragmentLightModelfvSGIX;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void FragmentLightModeliSGIX(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Int32 param);
|
internal delegate void FragmentLightModeliSGIX(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, Int32 param);
|
||||||
internal static FragmentLightModeliSGIX glFragmentLightModeliSGIX;
|
internal static FragmentLightModeliSGIX glFragmentLightModeliSGIX;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void FragmentLightModelivSGIX(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Int32* @params);
|
internal unsafe delegate void FragmentLightModelivSGIX(OpenTK.Graphics.OpenGL.FragmentLightModelParameterSgix pname, Int32* @params);
|
||||||
internal unsafe static FragmentLightModelivSGIX glFragmentLightModelivSGIX;
|
internal unsafe static FragmentLightModelivSGIX glFragmentLightModelivSGIX;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void FragmentMaterialfSGIX(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Single param);
|
internal delegate void FragmentMaterialfSGIX(OpenTK.Graphics.OpenGL.MaterialFace face, OpenTK.Graphics.OpenGL.MaterialParameter pname, Single param);
|
||||||
|
@ -1989,7 +1989,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal unsafe delegate void GetBufferParameteriv(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int32* @params);
|
internal unsafe delegate void GetBufferParameteriv(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferParameterName pname, [OutAttribute] Int32* @params);
|
||||||
internal unsafe static GetBufferParameteriv glGetBufferParameteriv;
|
internal unsafe static GetBufferParameteriv glGetBufferParameteriv;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void GetBufferParameterivARB(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [OutAttribute] Int32* @params);
|
internal unsafe delegate void GetBufferParameterivARB(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferParameterNameArb pname, [OutAttribute] Int32* @params);
|
||||||
internal unsafe static GetBufferParameterivARB glGetBufferParameterivARB;
|
internal unsafe static GetBufferParameterivARB glGetBufferParameterivARB;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void GetBufferParameterui64vNV(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] UInt64* @params);
|
internal unsafe delegate void GetBufferParameterui64vNV(OpenTK.Graphics.OpenGL.NvShaderBufferLoad target, OpenTK.Graphics.OpenGL.NvShaderBufferLoad pname, [OutAttribute] UInt64* @params);
|
||||||
|
@ -1998,7 +1998,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal delegate void GetBufferPointerv(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferPointer pname, [OutAttribute] IntPtr @params);
|
internal delegate void GetBufferPointerv(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferPointer pname, [OutAttribute] IntPtr @params);
|
||||||
internal static GetBufferPointerv glGetBufferPointerv;
|
internal static GetBufferPointerv glGetBufferPointerv;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void GetBufferPointervARB(OpenTK.Graphics.OpenGL.ArbVertexBufferObject target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [OutAttribute] IntPtr @params);
|
internal delegate void GetBufferPointervARB(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferPointerNameArb pname, [OutAttribute] IntPtr @params);
|
||||||
internal static GetBufferPointervARB glGetBufferPointervARB;
|
internal static GetBufferPointervARB glGetBufferPointervARB;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [OutAttribute] IntPtr data);
|
internal delegate void GetBufferSubData(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr size, [OutAttribute] IntPtr data);
|
||||||
|
@ -2028,7 +2028,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal unsafe delegate void GetColorTableParameterfvEXT(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute] Single* @params);
|
internal unsafe delegate void GetColorTableParameterfvEXT(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute] Single* @params);
|
||||||
internal unsafe static GetColorTableParameterfvEXT glGetColorTableParameterfvEXT;
|
internal unsafe static GetColorTableParameterfvEXT glGetColorTableParameterfvEXT;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void GetColorTableParameterfvSGI(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [OutAttribute] Single* @params);
|
internal unsafe delegate void GetColorTableParameterfvSGI(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute] Single* @params);
|
||||||
internal unsafe static GetColorTableParameterfvSGI glGetColorTableParameterfvSGI;
|
internal unsafe static GetColorTableParameterfvSGI glGetColorTableParameterfvSGI;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void GetColorTableParameteriv(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute] Int32* @params);
|
internal unsafe delegate void GetColorTableParameteriv(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute] Int32* @params);
|
||||||
|
@ -2037,10 +2037,10 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal unsafe delegate void GetColorTableParameterivEXT(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute] Int32* @params);
|
internal unsafe delegate void GetColorTableParameterivEXT(OpenTK.Graphics.OpenGL.ColorTableTarget target, OpenTK.Graphics.OpenGL.GetColorTableParameterPName pname, [OutAttribute] Int32* @params);
|
||||||
internal unsafe static GetColorTableParameterivEXT glGetColorTableParameterivEXT;
|
internal unsafe static GetColorTableParameterivEXT glGetColorTableParameterivEXT;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void GetColorTableParameterivSGI(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.SgiColorTable pname, [OutAttribute] Int32* @params);
|
internal unsafe delegate void GetColorTableParameterivSGI(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.GetColorTableParameterPNameSgi pname, [OutAttribute] Int32* @params);
|
||||||
internal unsafe static GetColorTableParameterivSGI glGetColorTableParameterivSGI;
|
internal unsafe static GetColorTableParameterivSGI glGetColorTableParameterivSGI;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void GetColorTableSGI(OpenTK.Graphics.OpenGL.SgiColorTable target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr table);
|
internal delegate void GetColorTableSGI(OpenTK.Graphics.OpenGL.ColorTableTargetSgi target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr table);
|
||||||
internal static GetColorTableSGI glGetColorTableSGI;
|
internal static GetColorTableSGI glGetColorTableSGI;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void GetCombinerInputParameterfvNV(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute] Single* @params);
|
internal unsafe delegate void GetCombinerInputParameterfvNV(OpenTK.Graphics.OpenGL.NvRegisterCombiners stage, OpenTK.Graphics.OpenGL.NvRegisterCombiners portion, OpenTK.Graphics.OpenGL.NvRegisterCombiners variable, OpenTK.Graphics.OpenGL.NvRegisterCombiners pname, [OutAttribute] Single* @params);
|
||||||
|
@ -2073,19 +2073,19 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal delegate void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr image);
|
internal delegate void GetConvolutionFilter(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr image);
|
||||||
internal static GetConvolutionFilter glGetConvolutionFilter;
|
internal static GetConvolutionFilter glGetConvolutionFilter;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void GetConvolutionFilterEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr image);
|
internal delegate void GetConvolutionFilterEXT(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr image);
|
||||||
internal static GetConvolutionFilterEXT glGetConvolutionFilterEXT;
|
internal static GetConvolutionFilterEXT glGetConvolutionFilterEXT;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void GetConvolutionParameterfv(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute] Single* @params);
|
internal unsafe delegate void GetConvolutionParameterfv(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute] Single* @params);
|
||||||
internal unsafe static GetConvolutionParameterfv glGetConvolutionParameterfv;
|
internal unsafe static GetConvolutionParameterfv glGetConvolutionParameterfv;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void GetConvolutionParameterfvEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [OutAttribute] Single* @params);
|
internal unsafe delegate void GetConvolutionParameterfvEXT(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute] Single* @params);
|
||||||
internal unsafe static GetConvolutionParameterfvEXT glGetConvolutionParameterfvEXT;
|
internal unsafe static GetConvolutionParameterfvEXT glGetConvolutionParameterfvEXT;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void GetConvolutionParameteriv(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute] Int32* @params);
|
internal unsafe delegate void GetConvolutionParameteriv(OpenTK.Graphics.OpenGL.ConvolutionTarget target, OpenTK.Graphics.OpenGL.GetConvolutionParameterPName pname, [OutAttribute] Int32* @params);
|
||||||
internal unsafe static GetConvolutionParameteriv glGetConvolutionParameteriv;
|
internal unsafe static GetConvolutionParameteriv glGetConvolutionParameteriv;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void GetConvolutionParameterivEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.ExtConvolution pname, [OutAttribute] Int32* @params);
|
internal unsafe delegate void GetConvolutionParameterivEXT(OpenTK.Graphics.OpenGL.ConvolutionTargetExt target, OpenTK.Graphics.OpenGL.ConvolutionParameterExt pname, [OutAttribute] Int32* @params);
|
||||||
internal unsafe static GetConvolutionParameterivEXT glGetConvolutionParameterivEXT;
|
internal unsafe static GetConvolutionParameterivEXT glGetConvolutionParameterivEXT;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void GetConvolutionParameterxvOES(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] int* @params);
|
internal unsafe delegate void GetConvolutionParameterxvOES(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] int* @params);
|
||||||
|
@ -2190,19 +2190,19 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal delegate void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr values);
|
internal delegate void GetHistogram(OpenTK.Graphics.OpenGL.HistogramTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr values);
|
||||||
internal static GetHistogram glGetHistogram;
|
internal static GetHistogram glGetHistogram;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void GetHistogramEXT(OpenTK.Graphics.OpenGL.ExtHistogram target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr values);
|
internal delegate void GetHistogramEXT(OpenTK.Graphics.OpenGL.HistogramTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr values);
|
||||||
internal static GetHistogramEXT glGetHistogramEXT;
|
internal static GetHistogramEXT glGetHistogramEXT;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void GetHistogramParameterfv(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute] Single* @params);
|
internal unsafe delegate void GetHistogramParameterfv(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute] Single* @params);
|
||||||
internal unsafe static GetHistogramParameterfv glGetHistogramParameterfv;
|
internal unsafe static GetHistogramParameterfv glGetHistogramParameterfv;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void GetHistogramParameterfvEXT(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute] Single* @params);
|
internal unsafe delegate void GetHistogramParameterfvEXT(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute] Single* @params);
|
||||||
internal unsafe static GetHistogramParameterfvEXT glGetHistogramParameterfvEXT;
|
internal unsafe static GetHistogramParameterfvEXT glGetHistogramParameterfvEXT;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void GetHistogramParameteriv(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute] Int32* @params);
|
internal unsafe delegate void GetHistogramParameteriv(OpenTK.Graphics.OpenGL.HistogramTarget target, OpenTK.Graphics.OpenGL.GetHistogramParameterPName pname, [OutAttribute] Int32* @params);
|
||||||
internal unsafe static GetHistogramParameteriv glGetHistogramParameteriv;
|
internal unsafe static GetHistogramParameteriv glGetHistogramParameteriv;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void GetHistogramParameterivEXT(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute] Int32* @params);
|
internal unsafe delegate void GetHistogramParameterivEXT(OpenTK.Graphics.OpenGL.HistogramTargetExt target, OpenTK.Graphics.OpenGL.GetHistogramParameterPNameExt pname, [OutAttribute] Int32* @params);
|
||||||
internal unsafe static GetHistogramParameterivEXT glGetHistogramParameterivEXT;
|
internal unsafe static GetHistogramParameterivEXT glGetHistogramParameterivEXT;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void GetHistogramParameterxvOES(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] int* @params);
|
internal unsafe delegate void GetHistogramParameterxvOES(OpenTK.Graphics.OpenGL.OesFixedPoint target, OpenTK.Graphics.OpenGL.OesFixedPoint pname, [OutAttribute] int* @params);
|
||||||
|
@ -2331,19 +2331,19 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal delegate void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr values);
|
internal delegate void GetMinmax(OpenTK.Graphics.OpenGL.MinmaxTarget target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr values);
|
||||||
internal static GetMinmax glGetMinmax;
|
internal static GetMinmax glGetMinmax;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void GetMinmaxEXT(OpenTK.Graphics.OpenGL.ExtHistogram target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr values);
|
internal delegate void GetMinmaxEXT(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, bool reset, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr values);
|
||||||
internal static GetMinmaxEXT glGetMinmaxEXT;
|
internal static GetMinmaxEXT glGetMinmaxEXT;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void GetMinmaxParameterfv(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute] Single* @params);
|
internal unsafe delegate void GetMinmaxParameterfv(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute] Single* @params);
|
||||||
internal unsafe static GetMinmaxParameterfv glGetMinmaxParameterfv;
|
internal unsafe static GetMinmaxParameterfv glGetMinmaxParameterfv;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void GetMinmaxParameterfvEXT(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute] Single* @params);
|
internal unsafe delegate void GetMinmaxParameterfvEXT(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute] Single* @params);
|
||||||
internal unsafe static GetMinmaxParameterfvEXT glGetMinmaxParameterfvEXT;
|
internal unsafe static GetMinmaxParameterfvEXT glGetMinmaxParameterfvEXT;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void GetMinmaxParameteriv(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute] Int32* @params);
|
internal unsafe delegate void GetMinmaxParameteriv(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPName pname, [OutAttribute] Int32* @params);
|
||||||
internal unsafe static GetMinmaxParameteriv glGetMinmaxParameteriv;
|
internal unsafe static GetMinmaxParameteriv glGetMinmaxParameteriv;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void GetMinmaxParameterivEXT(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.ExtHistogram pname, [OutAttribute] Int32* @params);
|
internal unsafe delegate void GetMinmaxParameterivEXT(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.GetMinmaxParameterPNameExt pname, [OutAttribute] Int32* @params);
|
||||||
internal unsafe static GetMinmaxParameterivEXT glGetMinmaxParameterivEXT;
|
internal unsafe static GetMinmaxParameterivEXT glGetMinmaxParameterivEXT;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void GetMultisamplefv(OpenTK.Graphics.OpenGL.GetMultisamplePName pname, UInt32 index, [OutAttribute] Single* val);
|
internal unsafe delegate void GetMultisamplefv(OpenTK.Graphics.OpenGL.GetMultisamplePName pname, UInt32 index, [OutAttribute] Single* val);
|
||||||
|
@ -2592,10 +2592,10 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal unsafe delegate void GetPixelMapxv(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [OutAttribute] int* values);
|
internal unsafe delegate void GetPixelMapxv(OpenTK.Graphics.OpenGL.OesFixedPoint map, Int32 size, [OutAttribute] int* values);
|
||||||
internal unsafe static GetPixelMapxv glGetPixelMapxv;
|
internal unsafe static GetPixelMapxv glGetPixelMapxv;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void GetPixelTexGenParameterfvSGIS(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [OutAttribute] Single* @params);
|
internal unsafe delegate void GetPixelTexGenParameterfvSGIS(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute] Single* @params);
|
||||||
internal unsafe static GetPixelTexGenParameterfvSGIS glGetPixelTexGenParameterfvSGIS;
|
internal unsafe static GetPixelTexGenParameterfvSGIS glGetPixelTexGenParameterfvSGIS;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void GetPixelTexGenParameterivSGIS(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, [OutAttribute] Int32* @params);
|
internal unsafe delegate void GetPixelTexGenParameterivSGIS(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, [OutAttribute] Int32* @params);
|
||||||
internal unsafe static GetPixelTexGenParameterivSGIS glGetPixelTexGenParameterivSGIS;
|
internal unsafe static GetPixelTexGenParameterivSGIS glGetPixelTexGenParameterivSGIS;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void GetPixelTransformParameterfvEXT(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute] Single* @params);
|
internal unsafe delegate void GetPixelTransformParameterfvEXT(OpenTK.Graphics.OpenGL.ExtPixelTransform target, OpenTK.Graphics.OpenGL.ExtPixelTransform pname, [OutAttribute] Single* @params);
|
||||||
|
@ -2769,7 +2769,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal delegate void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [OutAttribute] IntPtr column, [OutAttribute] IntPtr span);
|
internal delegate void GetSeparableFilter(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [OutAttribute] IntPtr column, [OutAttribute] IntPtr span);
|
||||||
internal static GetSeparableFilter glGetSeparableFilter;
|
internal static GetSeparableFilter glGetSeparableFilter;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void GetSeparableFilterEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [OutAttribute] IntPtr column, [OutAttribute] IntPtr span);
|
internal delegate void GetSeparableFilterEXT(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [OutAttribute] IntPtr column, [OutAttribute] IntPtr span);
|
||||||
internal static GetSeparableFilterEXT glGetSeparableFilterEXT;
|
internal static GetSeparableFilterEXT glGetSeparableFilterEXT;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog);
|
internal unsafe delegate void GetShaderInfoLog(UInt32 shader, Int32 bufSize, [OutAttribute] Int32* length, [OutAttribute] StringBuilder infoLog);
|
||||||
|
@ -3123,7 +3123,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal delegate void Histogram(OpenTK.Graphics.OpenGL.HistogramTarget target, Int32 width, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink);
|
internal delegate void Histogram(OpenTK.Graphics.OpenGL.HistogramTarget target, Int32 width, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink);
|
||||||
internal static Histogram glHistogram;
|
internal static Histogram glHistogram;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void HistogramEXT(OpenTK.Graphics.OpenGL.ExtHistogram target, Int32 width, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink);
|
internal delegate void HistogramEXT(OpenTK.Graphics.OpenGL.HistogramTargetExt target, Int32 width, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink);
|
||||||
internal static HistogramEXT glHistogramEXT;
|
internal static HistogramEXT glHistogramEXT;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void IglooInterfaceSGIX(OpenTK.Graphics.OpenGL.SgixIglooInterface pname, IntPtr @params);
|
internal delegate void IglooInterfaceSGIX(OpenTK.Graphics.OpenGL.SgixIglooInterface pname, IntPtr @params);
|
||||||
|
@ -3372,7 +3372,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal delegate void LabelObjectEXT(OpenTK.Graphics.OpenGL.ExtDebugLabel type, UInt32 @object, Int32 length, String label);
|
internal delegate void LabelObjectEXT(OpenTK.Graphics.OpenGL.ExtDebugLabel type, UInt32 @object, Int32 length, String label);
|
||||||
internal static LabelObjectEXT glLabelObjectEXT;
|
internal static LabelObjectEXT glLabelObjectEXT;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void LightEnviSGIX(OpenTK.Graphics.OpenGL.SgixFragmentLighting pname, Int32 param);
|
internal delegate void LightEnviSGIX(OpenTK.Graphics.OpenGL.LightEnvParameterSgix pname, Int32 param);
|
||||||
internal static LightEnviSGIX glLightEnviSGIX;
|
internal static LightEnviSGIX glLightEnviSGIX;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void Lightf(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Single param);
|
internal delegate void Lightf(OpenTK.Graphics.OpenGL.LightName light, OpenTK.Graphics.OpenGL.LightParameter pname, Single param);
|
||||||
|
@ -3444,7 +3444,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal delegate void LoadIdentity();
|
internal delegate void LoadIdentity();
|
||||||
internal static LoadIdentity glLoadIdentity;
|
internal static LoadIdentity glLoadIdentity;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void LoadIdentityDeformationMapSGIX(UInt32 mask);
|
internal delegate void LoadIdentityDeformationMapSGIX(OpenTK.Graphics.OpenGL.FfdMaskSgix mask);
|
||||||
internal static LoadIdentityDeformationMapSGIX glLoadIdentityDeformationMapSGIX;
|
internal static LoadIdentityDeformationMapSGIX glLoadIdentityDeformationMapSGIX;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void LoadMatrixd(Double* m);
|
internal unsafe delegate void LoadMatrixd(Double* m);
|
||||||
|
@ -3540,7 +3540,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal delegate IntPtr MapBuffer(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferAccess access);
|
internal delegate IntPtr MapBuffer(OpenTK.Graphics.OpenGL.BufferTarget target, OpenTK.Graphics.OpenGL.BufferAccess access);
|
||||||
internal static MapBuffer glMapBuffer;
|
internal static MapBuffer glMapBuffer;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate IntPtr MapBufferARB(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.ArbVertexBufferObject access);
|
internal delegate IntPtr MapBufferARB(OpenTK.Graphics.OpenGL.BufferTargetArb target, OpenTK.Graphics.OpenGL.BufferAccessArb access);
|
||||||
internal static MapBufferARB glMapBufferARB;
|
internal static MapBufferARB glMapBufferARB;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate IntPtr MapBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL.BufferAccessMask access);
|
internal delegate IntPtr MapBufferRange(OpenTK.Graphics.OpenGL.BufferTarget target, IntPtr offset, IntPtr length, OpenTK.Graphics.OpenGL.BufferAccessMask access);
|
||||||
|
@ -3696,7 +3696,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal delegate void Minmax(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink);
|
internal delegate void Minmax(OpenTK.Graphics.OpenGL.MinmaxTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink);
|
||||||
internal static Minmax glMinmax;
|
internal static Minmax glMinmax;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void MinmaxEXT(OpenTK.Graphics.OpenGL.ExtHistogram target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink);
|
internal delegate void MinmaxEXT(OpenTK.Graphics.OpenGL.MinmaxTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, bool sink);
|
||||||
internal static MinmaxEXT glMinmaxEXT;
|
internal static MinmaxEXT glMinmaxEXT;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void MinSampleShading(Single value);
|
internal delegate void MinSampleShading(Single value);
|
||||||
|
@ -4458,16 +4458,16 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal delegate void PixelStorex(OpenTK.Graphics.OpenGL.OesFixedPoint pname, int param);
|
internal delegate void PixelStorex(OpenTK.Graphics.OpenGL.OesFixedPoint pname, int param);
|
||||||
internal static PixelStorex glPixelStorex;
|
internal static PixelStorex glPixelStorex;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void PixelTexGenParameterfSGIS(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, Single param);
|
internal delegate void PixelTexGenParameterfSGIS(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, Single param);
|
||||||
internal static PixelTexGenParameterfSGIS glPixelTexGenParameterfSGIS;
|
internal static PixelTexGenParameterfSGIS glPixelTexGenParameterfSGIS;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void PixelTexGenParameterfvSGIS(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, Single* @params);
|
internal unsafe delegate void PixelTexGenParameterfvSGIS(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, Single* @params);
|
||||||
internal unsafe static PixelTexGenParameterfvSGIS glPixelTexGenParameterfvSGIS;
|
internal unsafe static PixelTexGenParameterfvSGIS glPixelTexGenParameterfvSGIS;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void PixelTexGenParameteriSGIS(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, Int32 param);
|
internal delegate void PixelTexGenParameteriSGIS(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, Int32 param);
|
||||||
internal static PixelTexGenParameteriSGIS glPixelTexGenParameteriSGIS;
|
internal static PixelTexGenParameteriSGIS glPixelTexGenParameteriSGIS;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal unsafe delegate void PixelTexGenParameterivSGIS(OpenTK.Graphics.OpenGL.SgisPixelTexture pname, Int32* @params);
|
internal unsafe delegate void PixelTexGenParameterivSGIS(OpenTK.Graphics.OpenGL.PixelTexGenParameterNameSgis pname, Int32* @params);
|
||||||
internal unsafe static PixelTexGenParameterivSGIS glPixelTexGenParameterivSGIS;
|
internal unsafe static PixelTexGenParameterivSGIS glPixelTexGenParameterivSGIS;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void PixelTexGenSGIX(OpenTK.Graphics.OpenGL.SgixPixelTexture mode);
|
internal delegate void PixelTexGenSGIX(OpenTK.Graphics.OpenGL.SgixPixelTexture mode);
|
||||||
|
@ -5151,6 +5151,9 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal unsafe delegate Int32 QueryMatrixxOES([OutAttribute] int* mantissa, [OutAttribute] Int32* exponent);
|
internal unsafe delegate Int32 QueryMatrixxOES([OutAttribute] int* mantissa, [OutAttribute] Int32* exponent);
|
||||||
internal unsafe static QueryMatrixxOES glQueryMatrixxOES;
|
internal unsafe static QueryMatrixxOES glQueryMatrixxOES;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
|
internal delegate void QueryObjectParameteruiAMD(OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent target, UInt32 id, OpenTK.Graphics.OpenGL.AmdOcclusionQueryEvent pname, OpenTK.Graphics.OpenGL.OcclusionQueryEventMaskAmd param);
|
||||||
|
internal static QueryObjectParameteruiAMD glQueryObjectParameteruiAMD;
|
||||||
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void RasterPos2d(Double x, Double y);
|
internal delegate void RasterPos2d(Double x, Double y);
|
||||||
internal static RasterPos2d glRasterPos2d;
|
internal static RasterPos2d glRasterPos2d;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
|
@ -5382,13 +5385,13 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal delegate void ResetHistogram(OpenTK.Graphics.OpenGL.HistogramTarget target);
|
internal delegate void ResetHistogram(OpenTK.Graphics.OpenGL.HistogramTarget target);
|
||||||
internal static ResetHistogram glResetHistogram;
|
internal static ResetHistogram glResetHistogram;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void ResetHistogramEXT(OpenTK.Graphics.OpenGL.ExtHistogram target);
|
internal delegate void ResetHistogramEXT(OpenTK.Graphics.OpenGL.HistogramTargetExt target);
|
||||||
internal static ResetHistogramEXT glResetHistogramEXT;
|
internal static ResetHistogramEXT glResetHistogramEXT;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void ResetMinmax(OpenTK.Graphics.OpenGL.MinmaxTarget target);
|
internal delegate void ResetMinmax(OpenTK.Graphics.OpenGL.MinmaxTarget target);
|
||||||
internal static ResetMinmax glResetMinmax;
|
internal static ResetMinmax glResetMinmax;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void ResetMinmaxEXT(OpenTK.Graphics.OpenGL.ExtHistogram target);
|
internal delegate void ResetMinmaxEXT(OpenTK.Graphics.OpenGL.MinmaxTargetExt target);
|
||||||
internal static ResetMinmaxEXT glResetMinmaxEXT;
|
internal static ResetMinmaxEXT glResetMinmaxEXT;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void ResizeBuffersMESA();
|
internal delegate void ResizeBuffersMESA();
|
||||||
|
@ -5439,7 +5442,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal delegate void SamplePatternEXT(OpenTK.Graphics.OpenGL.ExtMultisample pattern);
|
internal delegate void SamplePatternEXT(OpenTK.Graphics.OpenGL.ExtMultisample pattern);
|
||||||
internal static SamplePatternEXT glSamplePatternEXT;
|
internal static SamplePatternEXT glSamplePatternEXT;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void SamplePatternSGIS(OpenTK.Graphics.OpenGL.SgisMultisample pattern);
|
internal delegate void SamplePatternSGIS(OpenTK.Graphics.OpenGL.SamplePatternSgis pattern);
|
||||||
internal static SamplePatternSGIS glSamplePatternSGIS;
|
internal static SamplePatternSGIS glSamplePatternSGIS;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void SamplerParameterf(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, Single param);
|
internal delegate void SamplerParameterf(UInt32 sampler, OpenTK.Graphics.OpenGL.SamplerParameterName pname, Single param);
|
||||||
|
@ -5610,7 +5613,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
internal delegate void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr row, IntPtr column);
|
internal delegate void SeparableFilter2D(OpenTK.Graphics.OpenGL.SeparableTarget target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr row, IntPtr column);
|
||||||
internal static SeparableFilter2D glSeparableFilter2D;
|
internal static SeparableFilter2D glSeparableFilter2D;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void SeparableFilter2DEXT(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr row, IntPtr column);
|
internal delegate void SeparableFilter2DEXT(OpenTK.Graphics.OpenGL.SeparableTargetExt target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, IntPtr row, IntPtr column);
|
||||||
internal static SeparableFilter2DEXT glSeparableFilter2DEXT;
|
internal static SeparableFilter2DEXT glSeparableFilter2DEXT;
|
||||||
[System.Security.SuppressUnmanagedCodeSecurity()]
|
[System.Security.SuppressUnmanagedCodeSecurity()]
|
||||||
internal delegate void SetFenceAPPLE(UInt32 fence);
|
internal delegate void SetFenceAPPLE(UInt32 fence);
|
||||||
|
|
|
@ -793,6 +793,10 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Gl2XBitAti = ((int)0x00000001) ,
|
Gl2XBitAti = ((int)0x00000001) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_PASS_EVENT_BIT_AMD = 0x00000001
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthPassEventBitAmd = ((int)0x00000001) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_RED_BIT_ATI = 0x00000001
|
/// Original was GL_RED_BIT_ATI = 0x00000001
|
||||||
/// </summary>
|
/// </summary>
|
||||||
RedBitAti = ((int)0x00000001) ,
|
RedBitAti = ((int)0x00000001) ,
|
||||||
|
@ -877,6 +881,10 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
/// </summary>
|
/// </summary>
|
||||||
PointBit = ((int)0x00000002) ,
|
PointBit = ((int)0x00000002) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_FAIL_EVENT_BIT_AMD = 0x00000002
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthFailEventBitAmd = ((int)0x00000002) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_BLUE_BIT_ATI = 0x00000004
|
/// Original was GL_BLUE_BIT_ATI = 0x00000004
|
||||||
/// </summary>
|
/// </summary>
|
||||||
BlueBitAti = ((int)0x00000004) ,
|
BlueBitAti = ((int)0x00000004) ,
|
||||||
|
@ -901,6 +909,10 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
/// </summary>
|
/// </summary>
|
||||||
NegateBitAti = ((int)0x00000004) ,
|
NegateBitAti = ((int)0x00000004) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_STENCIL_FAIL_EVENT_BIT_AMD = 0x00000004
|
||||||
|
/// </summary>
|
||||||
|
QueryStencilFailEventBitAmd = ((int)0x00000004) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_UNIFORM_BARRIER_BIT = 0x00000004
|
/// Original was GL_UNIFORM_BARRIER_BIT = 0x00000004
|
||||||
/// </summary>
|
/// </summary>
|
||||||
UniformBarrierBit = ((int)0x00000004) ,
|
UniformBarrierBit = ((int)0x00000004) ,
|
||||||
|
@ -925,6 +937,10 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
/// </summary>
|
/// </summary>
|
||||||
PolygonBit = ((int)0x00000008) ,
|
PolygonBit = ((int)0x00000008) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_BOUNDS_FAIL_EVENT_BIT_AMD = 0x00000008
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthBoundsFailEventBitAmd = ((int)0x00000008) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_TESS_CONTROL_SHADER_BIT = 0x00000008
|
/// Original was GL_TESS_CONTROL_SHADER_BIT = 0x00000008
|
||||||
/// </summary>
|
/// </summary>
|
||||||
TessControlShaderBit = ((int)0x00000008) ,
|
TessControlShaderBit = ((int)0x00000008) ,
|
||||||
|
@ -10517,6 +10533,10 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
/// </summary>
|
/// </summary>
|
||||||
VertexAttribArrayLong = ((int)0x874E) ,
|
VertexAttribArrayLong = ((int)0x874E) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_OCCLUSION_QUERY_EVENT_MASK_AMD = 0x874F
|
||||||
|
/// </summary>
|
||||||
|
OcclusionQueryEventMaskAmd = ((int)0x874F) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_YCBCR_MESA = 0x8757
|
/// Original was GL_YCBCR_MESA = 0x8757
|
||||||
/// </summary>
|
/// </summary>
|
||||||
YcbcrMesa = ((int)0x8757) ,
|
YcbcrMesa = ((int)0x8757) ,
|
||||||
|
@ -16537,18 +16557,34 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
/// </summary>
|
/// </summary>
|
||||||
MaxTessEvaluationUniformBlocks = ((int)0x8E8A) ,
|
MaxTessEvaluationUniformBlocks = ((int)0x8E8A) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_BPTC_UNORM = 0x8E8C
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaBptcUnorm = ((int)0x8E8C) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_COMPRESSED_RGBA_BPTC_UNORM_ARB = 0x8E8C
|
/// Original was GL_COMPRESSED_RGBA_BPTC_UNORM_ARB = 0x8E8C
|
||||||
/// </summary>
|
/// </summary>
|
||||||
CompressedRgbaBptcUnormArb = ((int)0x8E8C) ,
|
CompressedRgbaBptcUnormArb = ((int)0x8E8C) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM = 0x8E8D
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgbAlphaBptcUnorm = ((int)0x8E8D) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM_ARB = 0x8E8D
|
/// Original was GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM_ARB = 0x8E8D
|
||||||
/// </summary>
|
/// </summary>
|
||||||
CompressedSrgbAlphaBptcUnormArb = ((int)0x8E8D) ,
|
CompressedSrgbAlphaBptcUnormArb = ((int)0x8E8D) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT = 0x8E8E
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbBptcSignedFloat = ((int)0x8E8E) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_ARB = 0x8E8E
|
/// Original was GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_ARB = 0x8E8E
|
||||||
/// </summary>
|
/// </summary>
|
||||||
CompressedRgbBptcSignedFloatArb = ((int)0x8E8E) ,
|
CompressedRgbBptcSignedFloatArb = ((int)0x8E8E) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT = 0x8E8F
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbBptcUnsignedFloat = ((int)0x8E8F) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_ARB = 0x8E8F
|
/// Original was GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_ARB = 0x8E8F
|
||||||
/// </summary>
|
/// </summary>
|
||||||
CompressedRgbBptcUnsignedFloatArb = ((int)0x8E8F) ,
|
CompressedRgbBptcUnsignedFloatArb = ((int)0x8E8F) ,
|
||||||
|
@ -19285,6 +19321,10 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
/// </summary>
|
/// </summary>
|
||||||
InvalidIndex = unchecked((int)0xFFFFFFFF) ,
|
InvalidIndex = unchecked((int)0xFFFFFFFF) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_ALL_EVENT_BITS_AMD = 0xFFFFFFFF
|
||||||
|
/// </summary>
|
||||||
|
QueryAllEventBitsAmd = unchecked((int)0xFFFFFFFF) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_TIMEOUT_IGNORED = 0xFFFFFFFFFFFFFFFF
|
/// Original was GL_TIMEOUT_IGNORED = 0xFFFFFFFFFFFFFFFF
|
||||||
/// </summary>
|
/// </summary>
|
||||||
TimeoutIgnored = unchecked((int)0xFFFFFFFFFFFFFFFF) ,
|
TimeoutIgnored = unchecked((int)0xFFFFFFFFFFFFFFFF) ,
|
||||||
|
@ -19637,6 +19677,37 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
SamplerObjectAmd = ((int)0x9155) ,
|
SamplerObjectAmd = ((int)0x9155) ,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Used in GL.Amd.QueryObjectParameter
|
||||||
|
/// </summary>
|
||||||
|
public enum AmdOcclusionQueryEvent : int
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_PASS_EVENT_BIT_AMD = 0x00000001
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthPassEventBitAmd = ((int)0x00000001) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_FAIL_EVENT_BIT_AMD = 0x00000002
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthFailEventBitAmd = ((int)0x00000002) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_STENCIL_FAIL_EVENT_BIT_AMD = 0x00000004
|
||||||
|
/// </summary>
|
||||||
|
QueryStencilFailEventBitAmd = ((int)0x00000004) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_BOUNDS_FAIL_EVENT_BIT_AMD = 0x00000008
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthBoundsFailEventBitAmd = ((int)0x00000008) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_OCCLUSION_QUERY_EVENT_MASK_AMD = 0x874F
|
||||||
|
/// </summary>
|
||||||
|
OcclusionQueryEventMaskAmd = ((int)0x874F) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_ALL_EVENT_BITS_AMD = 0xFFFFFFFF
|
||||||
|
/// </summary>
|
||||||
|
QueryAllEventBitsAmd = unchecked((int)0xFFFFFFFF) ,
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used in GL.Amd.GetPerfMonitorCounterData, GL.Amd.GetPerfMonitorCounterInfo
|
/// Used in GL.Amd.GetPerfMonitorCounterData, GL.Amd.GetPerfMonitorCounterInfo
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -28094,7 +28165,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Not used directly.
|
/// Used in GL.Ext.BlendEquationSeparate
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum BlendEquationModeExt : int
|
public enum BlendEquationModeExt : int
|
||||||
{
|
{
|
||||||
|
@ -28380,7 +28451,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Not used directly.
|
/// Used in GL.Arb.MapBuffer
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum BufferAccessArb : int
|
public enum BufferAccessArb : int
|
||||||
{
|
{
|
||||||
|
@ -28655,7 +28726,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used in GL.Arb.BindBuffer, GL.Arb.BufferData and 4 other functions
|
/// Used in GL.Arb.BindBuffer, GL.Arb.BufferData and 7 other functions
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum BufferTargetArb : int
|
public enum BufferTargetArb : int
|
||||||
{
|
{
|
||||||
|
@ -29070,7 +29141,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Not used directly.
|
/// Used in GL.Sgi.ColorTableParameter
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum ColorTableParameterPNameSgi : int
|
public enum ColorTableParameterPNameSgi : int
|
||||||
{
|
{
|
||||||
|
@ -29124,7 +29195,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Not used directly.
|
/// Used in GL.Sgi.ColorTableParameter, GL.Sgi.ColorTable and 3 other functions
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum ColorTableTargetSgi : int
|
public enum ColorTableTargetSgi : int
|
||||||
{
|
{
|
||||||
|
@ -29284,7 +29355,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Not used directly.
|
/// Used in GL.Ext.ConvolutionParameter, GL.Ext.GetConvolutionParameter
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum ConvolutionParameterExt : int
|
public enum ConvolutionParameterExt : int
|
||||||
{
|
{
|
||||||
|
@ -29353,7 +29424,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Not used directly.
|
/// Used in GL.Ext.ConvolutionFilter1D, GL.Ext.ConvolutionFilter2D and 5 other functions
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum ConvolutionTargetExt : int
|
public enum ConvolutionTargetExt : int
|
||||||
{
|
{
|
||||||
|
@ -30811,7 +30882,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used in GL.Ext.ConvolutionFilter1D, GL.Ext.ConvolutionFilter2D and 7 other functions
|
/// Used in GL.Ext.ConvolutionFilter1D, GL.Ext.ConvolutionFilter2D and 5 other functions
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum ExtConvolution : int
|
public enum ExtConvolution : int
|
||||||
{
|
{
|
||||||
|
@ -34484,7 +34555,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Not used directly.
|
/// Used in GL.Sgix.Deform, GL.Sgix.LoadIdentityDeformationMap
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Flags]
|
[Flags]
|
||||||
public enum FfdMaskSgix : int
|
public enum FfdMaskSgix : int
|
||||||
|
@ -34492,7 +34563,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Not used directly.
|
/// Used in GL.Sgix.DeformationMap3
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum FfdTargetSgix : int
|
public enum FfdTargetSgix : int
|
||||||
{
|
{
|
||||||
|
@ -34615,7 +34686,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Not used directly.
|
/// Used in GL.Ext.FogCoordPointer
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum FogPointerTypeExt : int
|
public enum FogPointerTypeExt : int
|
||||||
{
|
{
|
||||||
|
@ -34653,7 +34724,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Not used directly.
|
/// Used in GL.Sgix.FragmentLightModel
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum FragmentLightModelParameterSgix : int
|
public enum FragmentLightModelParameterSgix : int
|
||||||
{
|
{
|
||||||
|
@ -35238,7 +35309,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Not used directly.
|
/// Used in GL.Sgi.GetColorTableParameter
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum GetColorTableParameterPNameSgi : int
|
public enum GetColorTableParameterPNameSgi : int
|
||||||
{
|
{
|
||||||
|
@ -35406,7 +35477,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Not used directly.
|
/// Used in GL.Ext.GetHistogramParameter
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum GetHistogramParameterPNameExt : int
|
public enum GetHistogramParameterPNameExt : int
|
||||||
{
|
{
|
||||||
|
@ -35530,7 +35601,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Not used directly.
|
/// Used in GL.Ext.GetMinmaxParameter
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum GetMinmaxParameterPNameExt : int
|
public enum GetMinmaxParameterPNameExt : int
|
||||||
{
|
{
|
||||||
|
@ -38893,7 +38964,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Not used directly.
|
/// Used in GL.Ext.GetHistogram, GL.Ext.GetHistogramParameter and 2 other functions
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum HistogramTargetExt : int
|
public enum HistogramTargetExt : int
|
||||||
{
|
{
|
||||||
|
@ -40546,7 +40617,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Not used directly.
|
/// Used in GL.Sgix.LightEnv
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum LightEnvParameterSgix : int
|
public enum LightEnvParameterSgix : int
|
||||||
{
|
{
|
||||||
|
@ -41598,7 +41669,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Not used directly.
|
/// Used in GL.Ext.GetMinmax, GL.Ext.GetMinmaxParameter and 2 other functions
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum MinmaxTargetExt : int
|
public enum MinmaxTargetExt : int
|
||||||
{
|
{
|
||||||
|
@ -41675,10 +41746,6 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Zero = ((int)0) ,
|
Zero = ((int)0) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Original was GL_XOR = 0x1506
|
|
||||||
/// </summary>
|
|
||||||
Xor = ((int)0x1506) ,
|
|
||||||
/// <summary>
|
|
||||||
/// Original was GL_XOR_NV = 0x1506
|
/// Original was GL_XOR_NV = 0x1506
|
||||||
/// </summary>
|
/// </summary>
|
||||||
XorNv = ((int)0x1506) ,
|
XorNv = ((int)0x1506) ,
|
||||||
|
@ -41687,26 +41754,14 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Invert = ((int)0x150A) ,
|
Invert = ((int)0x150A) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Original was GL_RED = 0x1903
|
|
||||||
/// </summary>
|
|
||||||
Red = ((int)0x1903) ,
|
|
||||||
/// <summary>
|
|
||||||
/// Original was GL_RED_NV = 0x1903
|
/// Original was GL_RED_NV = 0x1903
|
||||||
/// </summary>
|
/// </summary>
|
||||||
RedNv = ((int)0x1903) ,
|
RedNv = ((int)0x1903) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Original was GL_GREEN = 0x1904
|
|
||||||
/// </summary>
|
|
||||||
Green = ((int)0x1904) ,
|
|
||||||
/// <summary>
|
|
||||||
/// Original was GL_GREEN_NV = 0x1904
|
/// Original was GL_GREEN_NV = 0x1904
|
||||||
/// </summary>
|
/// </summary>
|
||||||
GreenNv = ((int)0x1904) ,
|
GreenNv = ((int)0x1904) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Original was GL_BLUE = 0x1905
|
|
||||||
/// </summary>
|
|
||||||
Blue = ((int)0x1905) ,
|
|
||||||
/// <summary>
|
|
||||||
/// Original was GL_BLUE_NV = 0x1905
|
/// Original was GL_BLUE_NV = 0x1905
|
||||||
/// </summary>
|
/// </summary>
|
||||||
BlueNv = ((int)0x1905) ,
|
BlueNv = ((int)0x1905) ,
|
||||||
|
@ -45158,6 +45213,34 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
TransformFeedback = ((int)0x8E22) ,
|
TransformFeedback = ((int)0x8E22) ,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Used in GL.Amd.QueryObjectParameter
|
||||||
|
/// </summary>
|
||||||
|
[Flags]
|
||||||
|
public enum OcclusionQueryEventMaskAmd : int
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_PASS_EVENT_BIT_AMD = 0x00000001
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthPassEventBitAmd = ((int)0x00000001) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_FAIL_EVENT_BIT_AMD = 0x00000002
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthFailEventBitAmd = ((int)0x00000002) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_STENCIL_FAIL_EVENT_BIT_AMD = 0x00000004
|
||||||
|
/// </summary>
|
||||||
|
QueryStencilFailEventBitAmd = ((int)0x00000004) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_BOUNDS_FAIL_EVENT_BIT_AMD = 0x00000008
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthBoundsFailEventBitAmd = ((int)0x00000008) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_ALL_EVENT_BITS_AMD = 0xFFFFFFFF
|
||||||
|
/// </summary>
|
||||||
|
QueryAllEventBitsAmd = unchecked((int)0xFFFFFFFF) ,
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used in GL.Oes.MultiTexCoord1, GL.Oes.MultiTexCoord2 and 2 other functions
|
/// Used in GL.Oes.MultiTexCoord1, GL.Oes.MultiTexCoord2 and 2 other functions
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -46340,6 +46423,18 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
/// </summary>
|
/// </summary>
|
||||||
CompressedSignedRgRgtc2 = ((int)0x8DBE) ,
|
CompressedSignedRgRgtc2 = ((int)0x8DBE) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_BPTC_UNORM = 0x8E8C
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaBptcUnorm = ((int)0x8E8C) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT = 0x8E8E
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbBptcSignedFloat = ((int)0x8E8E) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT = 0x8E8F
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbBptcUnsignedFloat = ((int)0x8E8F) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_R8_SNORM = 0x8F94
|
/// Original was GL_R8_SNORM = 0x8F94
|
||||||
/// </summary>
|
/// </summary>
|
||||||
R8Snorm = ((int)0x8F94) ,
|
R8Snorm = ((int)0x8F94) ,
|
||||||
|
@ -46701,7 +46796,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Not used directly.
|
/// Used in GL.Sgis.GetPixelTexGenParameter, GL.Sgis.PixelTexGenParameter
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum PixelTexGenParameterNameSgis : int
|
public enum PixelTexGenParameterNameSgis : int
|
||||||
{
|
{
|
||||||
|
@ -48395,7 +48490,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Not used directly.
|
/// Used in GL.Sgis.SamplePattern
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum SamplePatternSgis : int
|
public enum SamplePatternSgis : int
|
||||||
{
|
{
|
||||||
|
@ -48579,7 +48674,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Not used directly.
|
/// Used in GL.Ext.GetSeparableFilter, GL.Ext.SeparableFilter2D
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum SeparableTargetExt : int
|
public enum SeparableTargetExt : int
|
||||||
{
|
{
|
||||||
|
@ -57733,6 +57828,22 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
/// </summary>
|
/// </summary>
|
||||||
AtomicCounterBarrierBit = ((int)0x00001000) ,
|
AtomicCounterBarrierBit = ((int)0x00001000) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_BPTC_UNORM = 0x8E8C
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaBptcUnorm = ((int)0x8E8C) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM = 0x8E8D
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgbAlphaBptcUnorm = ((int)0x8E8D) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT = 0x8E8E
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbBptcSignedFloat = ((int)0x8E8E) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT = 0x8E8F
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbBptcUnsignedFloat = ((int)0x8E8F) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_MAX_IMAGE_UNITS = 0x8F38
|
/// Original was GL_MAX_IMAGE_UNITS = 0x8F38
|
||||||
/// </summary>
|
/// </summary>
|
||||||
MaxImageUnits = ((int)0x8F38) ,
|
MaxImageUnits = ((int)0x8F38) ,
|
||||||
|
|
|
@ -1840,7 +1840,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned);
|
GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned);
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column, (IntPtr)span_ptr.AddrOfPinnedObject());
|
Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.SeparableTargetExt)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column, (IntPtr)span_ptr.AddrOfPinnedObject());
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
{
|
{
|
||||||
|
@ -1851,6 +1851,54 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Get separable convolution filter kernel images
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="target">
|
||||||
|
/// <para>
|
||||||
|
/// The separable filter to be retrieved. Must be GL_SEPARABLE_2D.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="format">
|
||||||
|
/// <para>
|
||||||
|
/// Format of the output images. Must be one of GL_RED, GL_GREEN, GL_BLUE, GL_ALPHA, GL_RGB, GL_BGR GL_RGBA, GL_BGRA, GL_LUMINANCE, or GL_LUMINANCE_ALPHA.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="type">
|
||||||
|
/// <para>
|
||||||
|
/// Data type of components in the output images. Symbolic constants GL_UNSIGNED_BYTE, GL_BYTE, GL_BITMAP, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, and GL_UNSIGNED_INT_2_10_10_10_REV are accepted.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="row">
|
||||||
|
/// <para>
|
||||||
|
/// Pointer to storage for the row filter image.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="column">
|
||||||
|
/// <para>
|
||||||
|
/// Pointer to storage for the column filter image.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="span">
|
||||||
|
/// <para>
|
||||||
|
/// Pointer to storage for the span filter image (currently unused).
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
[AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glGetSeparableFilterEXT")]
|
||||||
|
[Obsolete("Use GetSeparableFilter(SeparableTargetExt) overloads instead")]
|
||||||
|
public static
|
||||||
|
void GetSeparableFilter(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [OutAttribute] IntPtr row, [OutAttribute] IntPtr column, [InAttribute, OutAttribute] IntPtr span)
|
||||||
|
{
|
||||||
|
#if DEBUG
|
||||||
|
using (new ErrorHelper(GraphicsContext.CurrentContext))
|
||||||
|
{
|
||||||
|
#endif
|
||||||
|
Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.SeparableTargetExt)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column, (IntPtr)span);
|
||||||
|
#if DEBUG
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get separable convolution filter kernel images
|
/// Get separable convolution filter kernel images
|
||||||
|
@ -1898,7 +1946,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned);
|
GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned);
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column, (IntPtr)span_ptr.AddrOfPinnedObject());
|
Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.SeparableTargetExt)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column, (IntPtr)span_ptr.AddrOfPinnedObject());
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
{
|
{
|
||||||
|
@ -1956,7 +2004,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned);
|
GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned);
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column, (IntPtr)span_ptr.AddrOfPinnedObject());
|
Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.SeparableTargetExt)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column, (IntPtr)span_ptr.AddrOfPinnedObject());
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
{
|
{
|
||||||
|
@ -2013,7 +2061,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned);
|
GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned);
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column, (IntPtr)span_ptr.AddrOfPinnedObject());
|
Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.SeparableTargetExt)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column, (IntPtr)span_ptr.AddrOfPinnedObject());
|
||||||
span = (T5)span_ptr.Target;
|
span = (T5)span_ptr.Target;
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
|
@ -2074,7 +2122,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned);
|
GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned);
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject());
|
Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.SeparableTargetExt)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject());
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
{
|
{
|
||||||
|
@ -2135,7 +2183,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned);
|
GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned);
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject());
|
Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.SeparableTargetExt)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject());
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
{
|
{
|
||||||
|
@ -2196,7 +2244,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned);
|
GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned);
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject());
|
Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.SeparableTargetExt)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject());
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
{
|
{
|
||||||
|
@ -2257,7 +2305,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned);
|
GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned);
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject());
|
Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.SeparableTargetExt)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject());
|
||||||
column = (T4)column_ptr.Target;
|
column = (T4)column_ptr.Target;
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
|
@ -2321,7 +2369,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned);
|
GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned);
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject());
|
Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.SeparableTargetExt)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject());
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
{
|
{
|
||||||
|
@ -2385,7 +2433,259 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned);
|
GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned);
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject());
|
Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.SeparableTargetExt)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject());
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
row_ptr.Free();
|
||||||
|
column_ptr.Free();
|
||||||
|
span_ptr.Free();
|
||||||
|
}
|
||||||
|
#if DEBUG
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Get separable convolution filter kernel images
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="target">
|
||||||
|
/// <para>
|
||||||
|
/// The separable filter to be retrieved. Must be GL_SEPARABLE_2D.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="format">
|
||||||
|
/// <para>
|
||||||
|
/// Format of the output images. Must be one of GL_RED, GL_GREEN, GL_BLUE, GL_ALPHA, GL_RGB, GL_BGR GL_RGBA, GL_BGRA, GL_LUMINANCE, or GL_LUMINANCE_ALPHA.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="type">
|
||||||
|
/// <para>
|
||||||
|
/// Data type of components in the output images. Symbolic constants GL_UNSIGNED_BYTE, GL_BYTE, GL_BITMAP, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, and GL_UNSIGNED_INT_2_10_10_10_REV are accepted.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="row">
|
||||||
|
/// <para>
|
||||||
|
/// Pointer to storage for the row filter image.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="column">
|
||||||
|
/// <para>
|
||||||
|
/// Pointer to storage for the column filter image.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="span">
|
||||||
|
/// <para>
|
||||||
|
/// Pointer to storage for the span filter image (currently unused).
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
[AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glGetSeparableFilterEXT")]
|
||||||
|
[Obsolete("Use SeparableTargetExt overloads instead")]
|
||||||
|
public static
|
||||||
|
void GetSeparableFilter<T3,T4,T5>(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T3 row, [InAttribute, OutAttribute] ref T4 column, [InAttribute, OutAttribute] ref T5 span)
|
||||||
|
where T3 : struct
|
||||||
|
where T4 : struct
|
||||||
|
where T5 : struct
|
||||||
|
{
|
||||||
|
#if DEBUG
|
||||||
|
using (new ErrorHelper(GraphicsContext.CurrentContext))
|
||||||
|
{
|
||||||
|
#endif
|
||||||
|
GCHandle row_ptr = GCHandle.Alloc(row, GCHandleType.Pinned);
|
||||||
|
GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned);
|
||||||
|
GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned);
|
||||||
|
try
|
||||||
|
{
|
||||||
|
Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.SeparableTargetExt)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject());
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
row_ptr.Free();
|
||||||
|
column_ptr.Free();
|
||||||
|
span_ptr.Free();
|
||||||
|
}
|
||||||
|
#if DEBUG
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Get separable convolution filter kernel images
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="target">
|
||||||
|
/// <para>
|
||||||
|
/// The separable filter to be retrieved. Must be GL_SEPARABLE_2D.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="format">
|
||||||
|
/// <para>
|
||||||
|
/// Format of the output images. Must be one of GL_RED, GL_GREEN, GL_BLUE, GL_ALPHA, GL_RGB, GL_BGR GL_RGBA, GL_BGRA, GL_LUMINANCE, or GL_LUMINANCE_ALPHA.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="type">
|
||||||
|
/// <para>
|
||||||
|
/// Data type of components in the output images. Symbolic constants GL_UNSIGNED_BYTE, GL_BYTE, GL_BITMAP, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, and GL_UNSIGNED_INT_2_10_10_10_REV are accepted.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="row">
|
||||||
|
/// <para>
|
||||||
|
/// Pointer to storage for the row filter image.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="column">
|
||||||
|
/// <para>
|
||||||
|
/// Pointer to storage for the column filter image.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="span">
|
||||||
|
/// <para>
|
||||||
|
/// Pointer to storage for the span filter image (currently unused).
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
[AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glGetSeparableFilterEXT")]
|
||||||
|
[Obsolete("Use SeparableTargetExt overloads instead")]
|
||||||
|
public static
|
||||||
|
void GetSeparableFilter<T3,T4,T5>(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[] row, [InAttribute, OutAttribute] T4[] column, [InAttribute, OutAttribute] T5[] span)
|
||||||
|
where T3 : struct
|
||||||
|
where T4 : struct
|
||||||
|
where T5 : struct
|
||||||
|
{
|
||||||
|
#if DEBUG
|
||||||
|
using (new ErrorHelper(GraphicsContext.CurrentContext))
|
||||||
|
{
|
||||||
|
#endif
|
||||||
|
GCHandle row_ptr = GCHandle.Alloc(row, GCHandleType.Pinned);
|
||||||
|
GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned);
|
||||||
|
GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned);
|
||||||
|
try
|
||||||
|
{
|
||||||
|
Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.SeparableTargetExt)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject());
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
row_ptr.Free();
|
||||||
|
column_ptr.Free();
|
||||||
|
span_ptr.Free();
|
||||||
|
}
|
||||||
|
#if DEBUG
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Get separable convolution filter kernel images
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="target">
|
||||||
|
/// <para>
|
||||||
|
/// The separable filter to be retrieved. Must be GL_SEPARABLE_2D.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="format">
|
||||||
|
/// <para>
|
||||||
|
/// Format of the output images. Must be one of GL_RED, GL_GREEN, GL_BLUE, GL_ALPHA, GL_RGB, GL_BGR GL_RGBA, GL_BGRA, GL_LUMINANCE, or GL_LUMINANCE_ALPHA.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="type">
|
||||||
|
/// <para>
|
||||||
|
/// Data type of components in the output images. Symbolic constants GL_UNSIGNED_BYTE, GL_BYTE, GL_BITMAP, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, and GL_UNSIGNED_INT_2_10_10_10_REV are accepted.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="row">
|
||||||
|
/// <para>
|
||||||
|
/// Pointer to storage for the row filter image.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="column">
|
||||||
|
/// <para>
|
||||||
|
/// Pointer to storage for the column filter image.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="span">
|
||||||
|
/// <para>
|
||||||
|
/// Pointer to storage for the span filter image (currently unused).
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
[AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glGetSeparableFilterEXT")]
|
||||||
|
[Obsolete("Use SeparableTargetExt overloads instead")]
|
||||||
|
public static
|
||||||
|
void GetSeparableFilter<T3,T4,T5>(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[,] row, [InAttribute, OutAttribute] T4[,] column, [InAttribute, OutAttribute] T5[,] span)
|
||||||
|
where T3 : struct
|
||||||
|
where T4 : struct
|
||||||
|
where T5 : struct
|
||||||
|
{
|
||||||
|
#if DEBUG
|
||||||
|
using (new ErrorHelper(GraphicsContext.CurrentContext))
|
||||||
|
{
|
||||||
|
#endif
|
||||||
|
GCHandle row_ptr = GCHandle.Alloc(row, GCHandleType.Pinned);
|
||||||
|
GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned);
|
||||||
|
GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned);
|
||||||
|
try
|
||||||
|
{
|
||||||
|
Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.SeparableTargetExt)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject());
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
row_ptr.Free();
|
||||||
|
column_ptr.Free();
|
||||||
|
span_ptr.Free();
|
||||||
|
}
|
||||||
|
#if DEBUG
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Get separable convolution filter kernel images
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="target">
|
||||||
|
/// <para>
|
||||||
|
/// The separable filter to be retrieved. Must be GL_SEPARABLE_2D.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="format">
|
||||||
|
/// <para>
|
||||||
|
/// Format of the output images. Must be one of GL_RED, GL_GREEN, GL_BLUE, GL_ALPHA, GL_RGB, GL_BGR GL_RGBA, GL_BGRA, GL_LUMINANCE, or GL_LUMINANCE_ALPHA.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="type">
|
||||||
|
/// <para>
|
||||||
|
/// Data type of components in the output images. Symbolic constants GL_UNSIGNED_BYTE, GL_BYTE, GL_BITMAP, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, and GL_UNSIGNED_INT_2_10_10_10_REV are accepted.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="row">
|
||||||
|
/// <para>
|
||||||
|
/// Pointer to storage for the row filter image.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="column">
|
||||||
|
/// <para>
|
||||||
|
/// Pointer to storage for the column filter image.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="span">
|
||||||
|
/// <para>
|
||||||
|
/// Pointer to storage for the span filter image (currently unused).
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
[AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glGetSeparableFilterEXT")]
|
||||||
|
[Obsolete("Use SeparableTargetExt overloads instead")]
|
||||||
|
public static
|
||||||
|
void GetSeparableFilter<T3,T4,T5>(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T3[,,] row, [InAttribute, OutAttribute] T4[,,] column, [InAttribute, OutAttribute] T5[,,] span)
|
||||||
|
where T3 : struct
|
||||||
|
where T4 : struct
|
||||||
|
where T5 : struct
|
||||||
|
{
|
||||||
|
#if DEBUG
|
||||||
|
using (new ErrorHelper(GraphicsContext.CurrentContext))
|
||||||
|
{
|
||||||
|
#endif
|
||||||
|
GCHandle row_ptr = GCHandle.Alloc(row, GCHandleType.Pinned);
|
||||||
|
GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned);
|
||||||
|
GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned);
|
||||||
|
try
|
||||||
|
{
|
||||||
|
Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.SeparableTargetExt)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject());
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
{
|
{
|
||||||
|
@ -2448,7 +2748,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned);
|
GCHandle span_ptr = GCHandle.Alloc(span, GCHandleType.Pinned);
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject());
|
Delegates.glGetSeparableFilterEXT((OpenTK.Graphics.OpenGL.SeparableTargetExt)target, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject(), (IntPtr)span_ptr.AddrOfPinnedObject());
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
{
|
{
|
||||||
|
@ -2517,7 +2817,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned);
|
GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned);
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column_ptr.AddrOfPinnedObject());
|
Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.OpenGL.SeparableTargetExt)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column_ptr.AddrOfPinnedObject());
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
{
|
{
|
||||||
|
@ -2584,7 +2884,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned);
|
GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned);
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column_ptr.AddrOfPinnedObject());
|
Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.OpenGL.SeparableTargetExt)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column_ptr.AddrOfPinnedObject());
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
{
|
{
|
||||||
|
@ -2651,7 +2951,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned);
|
GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned);
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column_ptr.AddrOfPinnedObject());
|
Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.OpenGL.SeparableTargetExt)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column_ptr.AddrOfPinnedObject());
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
{
|
{
|
||||||
|
@ -2719,7 +3019,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned);
|
GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned);
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column_ptr.AddrOfPinnedObject());
|
Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.OpenGL.SeparableTargetExt)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column_ptr.AddrOfPinnedObject());
|
||||||
column = (T7)column_ptr.Target;
|
column = (T7)column_ptr.Target;
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
|
@ -2731,6 +3031,413 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Define a separable two-dimensional convolution filter
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="target">
|
||||||
|
/// <para>
|
||||||
|
/// Must be GL_SEPARABLE_2D.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="internalformat">
|
||||||
|
/// <para>
|
||||||
|
/// The internal format of the convolution filter kernel. The allowable values are GL_ALPHA, GL_ALPHA4, GL_ALPHA8, GL_ALPHA12, GL_ALPHA16, GL_LUMINANCE, GL_LUMINANCE4, GL_LUMINANCE8, GL_LUMINANCE12, GL_LUMINANCE16, GL_LUMINANCE_ALPHA, GL_LUMINANCE4_ALPHA4, GL_LUMINANCE6_ALPHA2, GL_LUMINANCE8_ALPHA8, GL_LUMINANCE12_ALPHA4, GL_LUMINANCE12_ALPHA12, GL_LUMINANCE16_ALPHA16, GL_INTENSITY, GL_INTENSITY4, GL_INTENSITY8, GL_INTENSITY12, GL_INTENSITY16, GL_R3_G3_B2, GL_RGB, GL_RGB4, GL_RGB5, GL_RGB8, GL_RGB10, GL_RGB12, GL_RGB16, GL_RGBA, GL_RGBA2, GL_RGBA4, GL_RGB5_A1, GL_RGBA8, GL_RGB10_A2, GL_RGBA12, or GL_RGBA16.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="width">
|
||||||
|
/// <para>
|
||||||
|
/// The number of elements in the pixel array referenced by row. (This is the width of the separable filter kernel.)
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="height">
|
||||||
|
/// <para>
|
||||||
|
/// The number of elements in the pixel array referenced by column. (This is the height of the separable filter kernel.)
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="format">
|
||||||
|
/// <para>
|
||||||
|
/// The format of the pixel data in row and column. The allowable values are GL_RED, GL_GREEN, GL_BLUE, GL_ALPHA, GL_RGB, GL_BGR, GL_RGBA, GL_BGRA, GL_INTENSITY, GL_LUMINANCE, and GL_LUMINANCE_ALPHA.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="type">
|
||||||
|
/// <para>
|
||||||
|
/// The type of the pixel data in row and column. Symbolic constants GL_UNSIGNED_BYTE, GL_BYTE, GL_BITMAP, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, and GL_UNSIGNED_INT_2_10_10_10_REV are accepted.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="row">
|
||||||
|
/// <para>
|
||||||
|
/// Pointer to a one-dimensional array of pixel data that is processed to build the row filter kernel.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="column">
|
||||||
|
/// <para>
|
||||||
|
/// Pointer to a one-dimensional array of pixel data that is processed to build the column filter kernel.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
[AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glSeparableFilter2DEXT")]
|
||||||
|
[Obsolete("Use ref/array overloads instead")]
|
||||||
|
public static
|
||||||
|
void SeparableFilter2D(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] IntPtr row, [InAttribute, OutAttribute] IntPtr column)
|
||||||
|
{
|
||||||
|
#if DEBUG
|
||||||
|
using (new ErrorHelper(GraphicsContext.CurrentContext))
|
||||||
|
{
|
||||||
|
#endif
|
||||||
|
Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.OpenGL.SeparableTargetExt)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row, (IntPtr)column);
|
||||||
|
#if DEBUG
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Define a separable two-dimensional convolution filter
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="target">
|
||||||
|
/// <para>
|
||||||
|
/// Must be GL_SEPARABLE_2D.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="internalformat">
|
||||||
|
/// <para>
|
||||||
|
/// The internal format of the convolution filter kernel. The allowable values are GL_ALPHA, GL_ALPHA4, GL_ALPHA8, GL_ALPHA12, GL_ALPHA16, GL_LUMINANCE, GL_LUMINANCE4, GL_LUMINANCE8, GL_LUMINANCE12, GL_LUMINANCE16, GL_LUMINANCE_ALPHA, GL_LUMINANCE4_ALPHA4, GL_LUMINANCE6_ALPHA2, GL_LUMINANCE8_ALPHA8, GL_LUMINANCE12_ALPHA4, GL_LUMINANCE12_ALPHA12, GL_LUMINANCE16_ALPHA16, GL_INTENSITY, GL_INTENSITY4, GL_INTENSITY8, GL_INTENSITY12, GL_INTENSITY16, GL_R3_G3_B2, GL_RGB, GL_RGB4, GL_RGB5, GL_RGB8, GL_RGB10, GL_RGB12, GL_RGB16, GL_RGBA, GL_RGBA2, GL_RGBA4, GL_RGB5_A1, GL_RGBA8, GL_RGB10_A2, GL_RGBA12, or GL_RGBA16.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="width">
|
||||||
|
/// <para>
|
||||||
|
/// The number of elements in the pixel array referenced by row. (This is the width of the separable filter kernel.)
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="height">
|
||||||
|
/// <para>
|
||||||
|
/// The number of elements in the pixel array referenced by column. (This is the height of the separable filter kernel.)
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="format">
|
||||||
|
/// <para>
|
||||||
|
/// The format of the pixel data in row and column. The allowable values are GL_RED, GL_GREEN, GL_BLUE, GL_ALPHA, GL_RGB, GL_BGR, GL_RGBA, GL_BGRA, GL_INTENSITY, GL_LUMINANCE, and GL_LUMINANCE_ALPHA.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="type">
|
||||||
|
/// <para>
|
||||||
|
/// The type of the pixel data in row and column. Symbolic constants GL_UNSIGNED_BYTE, GL_BYTE, GL_BITMAP, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, and GL_UNSIGNED_INT_2_10_10_10_REV are accepted.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="row">
|
||||||
|
/// <para>
|
||||||
|
/// Pointer to a one-dimensional array of pixel data that is processed to build the row filter kernel.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="column">
|
||||||
|
/// <para>
|
||||||
|
/// Pointer to a one-dimensional array of pixel data that is processed to build the column filter kernel.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
[AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glSeparableFilter2DEXT")]
|
||||||
|
[Obsolete("Use ref/array overloads instead")]
|
||||||
|
public static
|
||||||
|
void SeparableFilter2D<T6,T7>(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[] row, [InAttribute, OutAttribute] T7[] column)
|
||||||
|
where T6 : struct
|
||||||
|
where T7 : struct
|
||||||
|
{
|
||||||
|
#if DEBUG
|
||||||
|
using (new ErrorHelper(GraphicsContext.CurrentContext))
|
||||||
|
{
|
||||||
|
#endif
|
||||||
|
GCHandle row_ptr = GCHandle.Alloc(row, GCHandleType.Pinned);
|
||||||
|
GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned);
|
||||||
|
try
|
||||||
|
{
|
||||||
|
Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.OpenGL.SeparableTargetExt)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject());
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
row_ptr.Free();
|
||||||
|
column_ptr.Free();
|
||||||
|
}
|
||||||
|
#if DEBUG
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Define a separable two-dimensional convolution filter
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="target">
|
||||||
|
/// <para>
|
||||||
|
/// Must be GL_SEPARABLE_2D.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="internalformat">
|
||||||
|
/// <para>
|
||||||
|
/// The internal format of the convolution filter kernel. The allowable values are GL_ALPHA, GL_ALPHA4, GL_ALPHA8, GL_ALPHA12, GL_ALPHA16, GL_LUMINANCE, GL_LUMINANCE4, GL_LUMINANCE8, GL_LUMINANCE12, GL_LUMINANCE16, GL_LUMINANCE_ALPHA, GL_LUMINANCE4_ALPHA4, GL_LUMINANCE6_ALPHA2, GL_LUMINANCE8_ALPHA8, GL_LUMINANCE12_ALPHA4, GL_LUMINANCE12_ALPHA12, GL_LUMINANCE16_ALPHA16, GL_INTENSITY, GL_INTENSITY4, GL_INTENSITY8, GL_INTENSITY12, GL_INTENSITY16, GL_R3_G3_B2, GL_RGB, GL_RGB4, GL_RGB5, GL_RGB8, GL_RGB10, GL_RGB12, GL_RGB16, GL_RGBA, GL_RGBA2, GL_RGBA4, GL_RGB5_A1, GL_RGBA8, GL_RGB10_A2, GL_RGBA12, or GL_RGBA16.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="width">
|
||||||
|
/// <para>
|
||||||
|
/// The number of elements in the pixel array referenced by row. (This is the width of the separable filter kernel.)
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="height">
|
||||||
|
/// <para>
|
||||||
|
/// The number of elements in the pixel array referenced by column. (This is the height of the separable filter kernel.)
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="format">
|
||||||
|
/// <para>
|
||||||
|
/// The format of the pixel data in row and column. The allowable values are GL_RED, GL_GREEN, GL_BLUE, GL_ALPHA, GL_RGB, GL_BGR, GL_RGBA, GL_BGRA, GL_INTENSITY, GL_LUMINANCE, and GL_LUMINANCE_ALPHA.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="type">
|
||||||
|
/// <para>
|
||||||
|
/// The type of the pixel data in row and column. Symbolic constants GL_UNSIGNED_BYTE, GL_BYTE, GL_BITMAP, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, and GL_UNSIGNED_INT_2_10_10_10_REV are accepted.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="row">
|
||||||
|
/// <para>
|
||||||
|
/// Pointer to a one-dimensional array of pixel data that is processed to build the row filter kernel.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="column">
|
||||||
|
/// <para>
|
||||||
|
/// Pointer to a one-dimensional array of pixel data that is processed to build the column filter kernel.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
[AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glSeparableFilter2DEXT")]
|
||||||
|
[Obsolete("Use ref/array overloads instead")]
|
||||||
|
public static
|
||||||
|
void SeparableFilter2D<T6,T7>(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T6 row, [InAttribute, OutAttribute] ref T7 column)
|
||||||
|
where T6 : struct
|
||||||
|
where T7 : struct
|
||||||
|
{
|
||||||
|
#if DEBUG
|
||||||
|
using (new ErrorHelper(GraphicsContext.CurrentContext))
|
||||||
|
{
|
||||||
|
#endif
|
||||||
|
GCHandle row_ptr = GCHandle.Alloc(row, GCHandleType.Pinned);
|
||||||
|
GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned);
|
||||||
|
try
|
||||||
|
{
|
||||||
|
Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.OpenGL.SeparableTargetExt)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject());
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
row_ptr.Free();
|
||||||
|
column_ptr.Free();
|
||||||
|
}
|
||||||
|
#if DEBUG
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Define a separable two-dimensional convolution filter
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="target">
|
||||||
|
/// <para>
|
||||||
|
/// Must be GL_SEPARABLE_2D.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="internalformat">
|
||||||
|
/// <para>
|
||||||
|
/// The internal format of the convolution filter kernel. The allowable values are GL_ALPHA, GL_ALPHA4, GL_ALPHA8, GL_ALPHA12, GL_ALPHA16, GL_LUMINANCE, GL_LUMINANCE4, GL_LUMINANCE8, GL_LUMINANCE12, GL_LUMINANCE16, GL_LUMINANCE_ALPHA, GL_LUMINANCE4_ALPHA4, GL_LUMINANCE6_ALPHA2, GL_LUMINANCE8_ALPHA8, GL_LUMINANCE12_ALPHA4, GL_LUMINANCE12_ALPHA12, GL_LUMINANCE16_ALPHA16, GL_INTENSITY, GL_INTENSITY4, GL_INTENSITY8, GL_INTENSITY12, GL_INTENSITY16, GL_R3_G3_B2, GL_RGB, GL_RGB4, GL_RGB5, GL_RGB8, GL_RGB10, GL_RGB12, GL_RGB16, GL_RGBA, GL_RGBA2, GL_RGBA4, GL_RGB5_A1, GL_RGBA8, GL_RGB10_A2, GL_RGBA12, or GL_RGBA16.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="width">
|
||||||
|
/// <para>
|
||||||
|
/// The number of elements in the pixel array referenced by row. (This is the width of the separable filter kernel.)
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="height">
|
||||||
|
/// <para>
|
||||||
|
/// The number of elements in the pixel array referenced by column. (This is the height of the separable filter kernel.)
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="format">
|
||||||
|
/// <para>
|
||||||
|
/// The format of the pixel data in row and column. The allowable values are GL_RED, GL_GREEN, GL_BLUE, GL_ALPHA, GL_RGB, GL_BGR, GL_RGBA, GL_BGRA, GL_INTENSITY, GL_LUMINANCE, and GL_LUMINANCE_ALPHA.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="type">
|
||||||
|
/// <para>
|
||||||
|
/// The type of the pixel data in row and column. Symbolic constants GL_UNSIGNED_BYTE, GL_BYTE, GL_BITMAP, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, and GL_UNSIGNED_INT_2_10_10_10_REV are accepted.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="row">
|
||||||
|
/// <para>
|
||||||
|
/// Pointer to a one-dimensional array of pixel data that is processed to build the row filter kernel.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="column">
|
||||||
|
/// <para>
|
||||||
|
/// Pointer to a one-dimensional array of pixel data that is processed to build the column filter kernel.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
[AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glSeparableFilter2DEXT")]
|
||||||
|
[Obsolete("Use ref/array overloads instead")]
|
||||||
|
public static
|
||||||
|
void SeparableFilter2D<T6,T7>(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,] row, [InAttribute, OutAttribute] T7[,] column)
|
||||||
|
where T6 : struct
|
||||||
|
where T7 : struct
|
||||||
|
{
|
||||||
|
#if DEBUG
|
||||||
|
using (new ErrorHelper(GraphicsContext.CurrentContext))
|
||||||
|
{
|
||||||
|
#endif
|
||||||
|
GCHandle row_ptr = GCHandle.Alloc(row, GCHandleType.Pinned);
|
||||||
|
GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned);
|
||||||
|
try
|
||||||
|
{
|
||||||
|
Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.OpenGL.SeparableTargetExt)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject());
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
row_ptr.Free();
|
||||||
|
column_ptr.Free();
|
||||||
|
}
|
||||||
|
#if DEBUG
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Define a separable two-dimensional convolution filter
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="target">
|
||||||
|
/// <para>
|
||||||
|
/// Must be GL_SEPARABLE_2D.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="internalformat">
|
||||||
|
/// <para>
|
||||||
|
/// The internal format of the convolution filter kernel. The allowable values are GL_ALPHA, GL_ALPHA4, GL_ALPHA8, GL_ALPHA12, GL_ALPHA16, GL_LUMINANCE, GL_LUMINANCE4, GL_LUMINANCE8, GL_LUMINANCE12, GL_LUMINANCE16, GL_LUMINANCE_ALPHA, GL_LUMINANCE4_ALPHA4, GL_LUMINANCE6_ALPHA2, GL_LUMINANCE8_ALPHA8, GL_LUMINANCE12_ALPHA4, GL_LUMINANCE12_ALPHA12, GL_LUMINANCE16_ALPHA16, GL_INTENSITY, GL_INTENSITY4, GL_INTENSITY8, GL_INTENSITY12, GL_INTENSITY16, GL_R3_G3_B2, GL_RGB, GL_RGB4, GL_RGB5, GL_RGB8, GL_RGB10, GL_RGB12, GL_RGB16, GL_RGBA, GL_RGBA2, GL_RGBA4, GL_RGB5_A1, GL_RGBA8, GL_RGB10_A2, GL_RGBA12, or GL_RGBA16.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="width">
|
||||||
|
/// <para>
|
||||||
|
/// The number of elements in the pixel array referenced by row. (This is the width of the separable filter kernel.)
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="height">
|
||||||
|
/// <para>
|
||||||
|
/// The number of elements in the pixel array referenced by column. (This is the height of the separable filter kernel.)
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="format">
|
||||||
|
/// <para>
|
||||||
|
/// The format of the pixel data in row and column. The allowable values are GL_RED, GL_GREEN, GL_BLUE, GL_ALPHA, GL_RGB, GL_BGR, GL_RGBA, GL_BGRA, GL_INTENSITY, GL_LUMINANCE, and GL_LUMINANCE_ALPHA.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="type">
|
||||||
|
/// <para>
|
||||||
|
/// The type of the pixel data in row and column. Symbolic constants GL_UNSIGNED_BYTE, GL_BYTE, GL_BITMAP, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, and GL_UNSIGNED_INT_2_10_10_10_REV are accepted.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="row">
|
||||||
|
/// <para>
|
||||||
|
/// Pointer to a one-dimensional array of pixel data that is processed to build the row filter kernel.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="column">
|
||||||
|
/// <para>
|
||||||
|
/// Pointer to a one-dimensional array of pixel data that is processed to build the column filter kernel.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
[AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glSeparableFilter2DEXT")]
|
||||||
|
[Obsolete("Use ref/array overloads instead")]
|
||||||
|
public static
|
||||||
|
void SeparableFilter2D<T6,T7>(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] T6[,,] row, [InAttribute, OutAttribute] T7[,,] column)
|
||||||
|
where T6 : struct
|
||||||
|
where T7 : struct
|
||||||
|
{
|
||||||
|
#if DEBUG
|
||||||
|
using (new ErrorHelper(GraphicsContext.CurrentContext))
|
||||||
|
{
|
||||||
|
#endif
|
||||||
|
GCHandle row_ptr = GCHandle.Alloc(row, GCHandleType.Pinned);
|
||||||
|
GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned);
|
||||||
|
try
|
||||||
|
{
|
||||||
|
Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.OpenGL.SeparableTargetExt)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject());
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
row_ptr.Free();
|
||||||
|
column_ptr.Free();
|
||||||
|
}
|
||||||
|
#if DEBUG
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Define a separable two-dimensional convolution filter
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="target">
|
||||||
|
/// <para>
|
||||||
|
/// Must be GL_SEPARABLE_2D.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="internalformat">
|
||||||
|
/// <para>
|
||||||
|
/// The internal format of the convolution filter kernel. The allowable values are GL_ALPHA, GL_ALPHA4, GL_ALPHA8, GL_ALPHA12, GL_ALPHA16, GL_LUMINANCE, GL_LUMINANCE4, GL_LUMINANCE8, GL_LUMINANCE12, GL_LUMINANCE16, GL_LUMINANCE_ALPHA, GL_LUMINANCE4_ALPHA4, GL_LUMINANCE6_ALPHA2, GL_LUMINANCE8_ALPHA8, GL_LUMINANCE12_ALPHA4, GL_LUMINANCE12_ALPHA12, GL_LUMINANCE16_ALPHA16, GL_INTENSITY, GL_INTENSITY4, GL_INTENSITY8, GL_INTENSITY12, GL_INTENSITY16, GL_R3_G3_B2, GL_RGB, GL_RGB4, GL_RGB5, GL_RGB8, GL_RGB10, GL_RGB12, GL_RGB16, GL_RGBA, GL_RGBA2, GL_RGBA4, GL_RGB5_A1, GL_RGBA8, GL_RGB10_A2, GL_RGBA12, or GL_RGBA16.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="width">
|
||||||
|
/// <para>
|
||||||
|
/// The number of elements in the pixel array referenced by row. (This is the width of the separable filter kernel.)
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="height">
|
||||||
|
/// <para>
|
||||||
|
/// The number of elements in the pixel array referenced by column. (This is the height of the separable filter kernel.)
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="format">
|
||||||
|
/// <para>
|
||||||
|
/// The format of the pixel data in row and column. The allowable values are GL_RED, GL_GREEN, GL_BLUE, GL_ALPHA, GL_RGB, GL_BGR, GL_RGBA, GL_BGRA, GL_INTENSITY, GL_LUMINANCE, and GL_LUMINANCE_ALPHA.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="type">
|
||||||
|
/// <para>
|
||||||
|
/// The type of the pixel data in row and column. Symbolic constants GL_UNSIGNED_BYTE, GL_BYTE, GL_BITMAP, GL_UNSIGNED_SHORT, GL_SHORT, GL_UNSIGNED_INT, GL_INT, GL_FLOAT, GL_UNSIGNED_BYTE_3_3_2, GL_UNSIGNED_BYTE_2_3_3_REV, GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_5_6_5_REV, GL_UNSIGNED_SHORT_4_4_4_4, GL_UNSIGNED_SHORT_4_4_4_4_REV, GL_UNSIGNED_SHORT_5_5_5_1, GL_UNSIGNED_SHORT_1_5_5_5_REV, GL_UNSIGNED_INT_8_8_8_8, GL_UNSIGNED_INT_8_8_8_8_REV, GL_UNSIGNED_INT_10_10_10_2, and GL_UNSIGNED_INT_2_10_10_10_REV are accepted.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="row">
|
||||||
|
/// <para>
|
||||||
|
/// Pointer to a one-dimensional array of pixel data that is processed to build the row filter kernel.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
/// <param name="column">
|
||||||
|
/// <para>
|
||||||
|
/// Pointer to a one-dimensional array of pixel data that is processed to build the column filter kernel.
|
||||||
|
/// </para>
|
||||||
|
/// </param>
|
||||||
|
[AutoGenerated(Category = "ExtConvolution", Version = "1.0", EntryPoint = "glSeparableFilter2DEXT")]
|
||||||
|
[Obsolete("Use ref/array overloads instead")]
|
||||||
|
public static
|
||||||
|
void SeparableFilter2D<T6,T7>(OpenTK.Graphics.OpenGL.ExtConvolution target, OpenTK.Graphics.OpenGL.PixelInternalFormat internalformat, Int32 width, Int32 height, OpenTK.Graphics.OpenGL.PixelFormat format, OpenTK.Graphics.OpenGL.PixelType type, [InAttribute, OutAttribute] ref T6 row, [InAttribute, OutAttribute] T7[,,] column)
|
||||||
|
where T6 : struct
|
||||||
|
where T7 : struct
|
||||||
|
{
|
||||||
|
#if DEBUG
|
||||||
|
using (new ErrorHelper(GraphicsContext.CurrentContext))
|
||||||
|
{
|
||||||
|
#endif
|
||||||
|
GCHandle row_ptr = GCHandle.Alloc(row, GCHandleType.Pinned);
|
||||||
|
GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned);
|
||||||
|
try
|
||||||
|
{
|
||||||
|
Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.OpenGL.SeparableTargetExt)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject());
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
|
row_ptr.Free();
|
||||||
|
column_ptr.Free();
|
||||||
|
}
|
||||||
|
#if DEBUG
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Define a separable two-dimensional convolution filter
|
/// Define a separable two-dimensional convolution filter
|
||||||
|
@ -2790,7 +3497,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned);
|
GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned);
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject());
|
Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.OpenGL.SeparableTargetExt)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject());
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
{
|
{
|
||||||
|
@ -2861,7 +3568,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned);
|
GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned);
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject());
|
Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.OpenGL.SeparableTargetExt)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject());
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
{
|
{
|
||||||
|
@ -2932,7 +3639,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned);
|
GCHandle column_ptr = GCHandle.Alloc(column, GCHandleType.Pinned);
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.OpenGL.ExtConvolution)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject());
|
Delegates.glSeparableFilter2DEXT((OpenTK.Graphics.OpenGL.SeparableTargetExt)target, (OpenTK.Graphics.OpenGL.PixelInternalFormat)internalformat, (Int32)width, (Int32)height, (OpenTK.Graphics.OpenGL.PixelFormat)format, (OpenTK.Graphics.OpenGL.PixelType)type, (IntPtr)row_ptr.AddrOfPinnedObject(), (IntPtr)column_ptr.AddrOfPinnedObject());
|
||||||
row = (T6)row_ptr.Target;
|
row = (T6)row_ptr.Target;
|
||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
|
|
|
@ -757,6 +757,10 @@ namespace OpenTK.Graphics.OpenGL4
|
||||||
/// </summary>
|
/// </summary>
|
||||||
ContextFlagForwardCompatibleBit = ((int)0x00000001) ,
|
ContextFlagForwardCompatibleBit = ((int)0x00000001) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_PASS_EVENT_BIT_AMD = 0x00000001
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthPassEventBitAmd = ((int)0x00000001) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_SYNC_FLUSH_COMMANDS_BIT = 0x00000001
|
/// Original was GL_SYNC_FLUSH_COMMANDS_BIT = 0x00000001
|
||||||
/// </summary>
|
/// </summary>
|
||||||
SyncFlushCommandsBit = ((int)0x00000001) ,
|
SyncFlushCommandsBit = ((int)0x00000001) ,
|
||||||
|
@ -805,6 +809,10 @@ namespace OpenTK.Graphics.OpenGL4
|
||||||
/// </summary>
|
/// </summary>
|
||||||
FragmentShaderBitExt = ((int)0x00000002) ,
|
FragmentShaderBitExt = ((int)0x00000002) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_FAIL_EVENT_BIT_AMD = 0x00000002
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthFailEventBitAmd = ((int)0x00000002) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB = 0x00000004
|
/// Original was GL_CONTEXT_FLAG_ROBUST_ACCESS_BIT_ARB = 0x00000004
|
||||||
/// </summary>
|
/// </summary>
|
||||||
ContextFlagRobustAccessBitArb = ((int)0x00000004) ,
|
ContextFlagRobustAccessBitArb = ((int)0x00000004) ,
|
||||||
|
@ -813,6 +821,10 @@ namespace OpenTK.Graphics.OpenGL4
|
||||||
/// </summary>
|
/// </summary>
|
||||||
GeometryShaderBit = ((int)0x00000004) ,
|
GeometryShaderBit = ((int)0x00000004) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_STENCIL_FAIL_EVENT_BIT_AMD = 0x00000004
|
||||||
|
/// </summary>
|
||||||
|
QueryStencilFailEventBitAmd = ((int)0x00000004) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_UNIFORM_BARRIER_BIT = 0x00000004
|
/// Original was GL_UNIFORM_BARRIER_BIT = 0x00000004
|
||||||
/// </summary>
|
/// </summary>
|
||||||
UniformBarrierBit = ((int)0x00000004) ,
|
UniformBarrierBit = ((int)0x00000004) ,
|
||||||
|
@ -821,6 +833,10 @@ namespace OpenTK.Graphics.OpenGL4
|
||||||
/// </summary>
|
/// </summary>
|
||||||
UniformBarrierBitExt = ((int)0x00000004) ,
|
UniformBarrierBitExt = ((int)0x00000004) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_BOUNDS_FAIL_EVENT_BIT_AMD = 0x00000008
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthBoundsFailEventBitAmd = ((int)0x00000008) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_TESS_CONTROL_SHADER_BIT = 0x00000008
|
/// Original was GL_TESS_CONTROL_SHADER_BIT = 0x00000008
|
||||||
/// </summary>
|
/// </summary>
|
||||||
TessControlShaderBit = ((int)0x00000008) ,
|
TessControlShaderBit = ((int)0x00000008) ,
|
||||||
|
@ -8477,18 +8493,34 @@ namespace OpenTK.Graphics.OpenGL4
|
||||||
/// </summary>
|
/// </summary>
|
||||||
MaxTessEvaluationUniformBlocks = ((int)0x8E8A) ,
|
MaxTessEvaluationUniformBlocks = ((int)0x8E8A) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_BPTC_UNORM = 0x8E8C
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaBptcUnorm = ((int)0x8E8C) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_COMPRESSED_RGBA_BPTC_UNORM_ARB = 0x8E8C
|
/// Original was GL_COMPRESSED_RGBA_BPTC_UNORM_ARB = 0x8E8C
|
||||||
/// </summary>
|
/// </summary>
|
||||||
CompressedRgbaBptcUnormArb = ((int)0x8E8C) ,
|
CompressedRgbaBptcUnormArb = ((int)0x8E8C) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM = 0x8E8D
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgbAlphaBptcUnorm = ((int)0x8E8D) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM_ARB = 0x8E8D
|
/// Original was GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM_ARB = 0x8E8D
|
||||||
/// </summary>
|
/// </summary>
|
||||||
CompressedSrgbAlphaBptcUnormArb = ((int)0x8E8D) ,
|
CompressedSrgbAlphaBptcUnormArb = ((int)0x8E8D) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT = 0x8E8E
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbBptcSignedFloat = ((int)0x8E8E) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_ARB = 0x8E8E
|
/// Original was GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_ARB = 0x8E8E
|
||||||
/// </summary>
|
/// </summary>
|
||||||
CompressedRgbBptcSignedFloatArb = ((int)0x8E8E) ,
|
CompressedRgbBptcSignedFloatArb = ((int)0x8E8E) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT = 0x8E8F
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbBptcUnsignedFloat = ((int)0x8E8F) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_ARB = 0x8E8F
|
/// Original was GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_ARB = 0x8E8F
|
||||||
/// </summary>
|
/// </summary>
|
||||||
CompressedRgbBptcUnsignedFloatArb = ((int)0x8E8F) ,
|
CompressedRgbBptcUnsignedFloatArb = ((int)0x8E8F) ,
|
||||||
|
@ -9905,6 +9937,10 @@ namespace OpenTK.Graphics.OpenGL4
|
||||||
/// </summary>
|
/// </summary>
|
||||||
InvalidIndex = unchecked((int)0xFFFFFFFF) ,
|
InvalidIndex = unchecked((int)0xFFFFFFFF) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_ALL_EVENT_BITS_AMD = 0xFFFFFFFF
|
||||||
|
/// </summary>
|
||||||
|
QueryAllEventBitsAmd = unchecked((int)0xFFFFFFFF) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_TIMEOUT_IGNORED = 0xFFFFFFFFFFFFFFFF
|
/// Original was GL_TIMEOUT_IGNORED = 0xFFFFFFFFFFFFFFFF
|
||||||
/// </summary>
|
/// </summary>
|
||||||
TimeoutIgnored = unchecked((int)0xFFFFFFFFFFFFFFFF) ,
|
TimeoutIgnored = unchecked((int)0xFFFFFFFFFFFFFFFF) ,
|
||||||
|
@ -22770,6 +22806,34 @@ namespace OpenTK.Graphics.OpenGL4
|
||||||
TransformFeedback = ((int)0x8E22) ,
|
TransformFeedback = ((int)0x8E22) ,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Not used directly.
|
||||||
|
/// </summary>
|
||||||
|
[Flags]
|
||||||
|
public enum OcclusionQueryEventMaskAmd : int
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_PASS_EVENT_BIT_AMD = 0x00000001
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthPassEventBitAmd = ((int)0x00000001) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_FAIL_EVENT_BIT_AMD = 0x00000002
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthFailEventBitAmd = ((int)0x00000002) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_STENCIL_FAIL_EVENT_BIT_AMD = 0x00000004
|
||||||
|
/// </summary>
|
||||||
|
QueryStencilFailEventBitAmd = ((int)0x00000004) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_DEPTH_BOUNDS_FAIL_EVENT_BIT_AMD = 0x00000008
|
||||||
|
/// </summary>
|
||||||
|
QueryDepthBoundsFailEventBitAmd = ((int)0x00000008) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_QUERY_ALL_EVENT_BITS_AMD = 0xFFFFFFFF
|
||||||
|
/// </summary>
|
||||||
|
QueryAllEventBitsAmd = unchecked((int)0xFFFFFFFF) ,
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Used in GL.ColorP3, GL.ColorP4 and 17 other functions
|
/// Used in GL.ColorP3, GL.ColorP4 and 17 other functions
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -23539,6 +23603,18 @@ namespace OpenTK.Graphics.OpenGL4
|
||||||
/// </summary>
|
/// </summary>
|
||||||
CompressedSignedRgRgtc2 = ((int)0x8DBE) ,
|
CompressedSignedRgRgtc2 = ((int)0x8DBE) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_BPTC_UNORM = 0x8E8C
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaBptcUnorm = ((int)0x8E8C) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT = 0x8E8E
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbBptcSignedFloat = ((int)0x8E8E) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT = 0x8E8F
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbBptcUnsignedFloat = ((int)0x8E8F) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_R8_SNORM = 0x8F94
|
/// Original was GL_R8_SNORM = 0x8F94
|
||||||
/// </summary>
|
/// </summary>
|
||||||
R8Snorm = ((int)0x8F94) ,
|
R8Snorm = ((int)0x8F94) ,
|
||||||
|
@ -31544,6 +31620,22 @@ namespace OpenTK.Graphics.OpenGL4
|
||||||
/// </summary>
|
/// </summary>
|
||||||
AtomicCounterBarrierBit = ((int)0x00001000) ,
|
AtomicCounterBarrierBit = ((int)0x00001000) ,
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGBA_BPTC_UNORM = 0x8E8C
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbaBptcUnorm = ((int)0x8E8C) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM = 0x8E8D
|
||||||
|
/// </summary>
|
||||||
|
CompressedSrgbAlphaBptcUnorm = ((int)0x8E8D) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT = 0x8E8E
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbBptcSignedFloat = ((int)0x8E8E) ,
|
||||||
|
/// <summary>
|
||||||
|
/// Original was GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT = 0x8E8F
|
||||||
|
/// </summary>
|
||||||
|
CompressedRgbBptcUnsignedFloat = ((int)0x8E8F) ,
|
||||||
|
/// <summary>
|
||||||
/// Original was GL_MAX_IMAGE_UNITS = 0x8F38
|
/// Original was GL_MAX_IMAGE_UNITS = 0x8F38
|
||||||
/// </summary>
|
/// </summary>
|
||||||
MaxImageUnits = ((int)0x8F38) ,
|
MaxImageUnits = ((int)0x8F38) ,
|
||||||
|
|
Loading…
Reference in a new issue