mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 01:15:35 +00:00
Generate legacy overloads for EdgeFlagv
This commit is contained in:
parent
ffa26fb204
commit
bb456e47a8
|
@ -1686,6 +1686,10 @@
|
||||||
</param>
|
</param>
|
||||||
</function>
|
</function>
|
||||||
|
|
||||||
|
<!-- For backwards compatibility -->
|
||||||
|
<function name="EdgeFlagv" extension="Core">
|
||||||
|
<param name="flag" legacyArrayParameter="true" />
|
||||||
|
</function>
|
||||||
</replace>
|
</replace>
|
||||||
|
|
||||||
<overload name="glcore">
|
<overload name="glcore">
|
||||||
|
@ -1860,11 +1864,6 @@
|
||||||
<type>BeginMode</type>
|
<type>BeginMode</type>
|
||||||
</param>
|
</param>
|
||||||
</function>
|
</function>
|
||||||
<function name="EdgeFlagv" extension="Core" obsolete="Use ref overload instead">
|
|
||||||
<param name="flag">
|
|
||||||
<count>0</count>
|
|
||||||
</param>
|
|
||||||
</function>
|
|
||||||
<function name="GetObjectLabel" extension="Core">
|
<function name="GetObjectLabel" extension="Core">
|
||||||
<param name="length">
|
<param name="length">
|
||||||
<count>0</count>
|
<count>0</count>
|
||||||
|
|
|
@ -39011,7 +39011,7 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
/// <param name="flag">[length: 1]
|
/// <param name="flag">[length: 1]
|
||||||
/// Specifies the current edge flag value, either True or False. The initial value is True.
|
/// Specifies the current edge flag value, either True or False. The initial value is True.
|
||||||
/// </param>
|
/// </param>
|
||||||
[Obsolete("Use ref overload instead")]
|
[Obsolete("Use out overload instead")]
|
||||||
[AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEdgeFlagv")]
|
[AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEdgeFlagv")]
|
||||||
[CLSCompliant(false)]
|
[CLSCompliant(false)]
|
||||||
public static void EdgeFlag([CountAttribute(Count = 1)] bool[] flag) { throw new BindingsNotRewrittenException(); }
|
public static void EdgeFlag([CountAttribute(Count = 1)] bool[] flag) { throw new BindingsNotRewrittenException(); }
|
||||||
|
@ -39022,7 +39022,6 @@ namespace OpenTK.Graphics.OpenGL
|
||||||
/// <param name="flag">[length: 1]
|
/// <param name="flag">[length: 1]
|
||||||
/// Specifies the current edge flag value, either True or False. The initial value is True.
|
/// Specifies the current edge flag value, either True or False. The initial value is True.
|
||||||
/// </param>
|
/// </param>
|
||||||
[Obsolete("Use ref overload instead")]
|
|
||||||
[AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEdgeFlagv")]
|
[AutoGenerated(Category = "VERSION_1_0", Version = "1.0", EntryPoint = "glEdgeFlagv")]
|
||||||
[CLSCompliant(false)]
|
[CLSCompliant(false)]
|
||||||
public static unsafe void EdgeFlag([CountAttribute(Count = 1)] bool* flag) { throw new BindingsNotRewrittenException(); }
|
public static unsafe void EdgeFlag([CountAttribute(Count = 1)] bool* flag) { throw new BindingsNotRewrittenException(); }
|
||||||
|
|
Loading…
Reference in a new issue