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