mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-24 16:25:26 +00:00
Commented-out unneeded call to Translate() method.
This commit is contained in:
parent
7c187e705e
commit
e05d99d622
|
@ -71,7 +71,7 @@ namespace Bind.GL2
|
|||
|
||||
// Process enums and delegates - create wrappers.
|
||||
Trace.WriteLine("Processing specs, please wait...");
|
||||
this.Translate();
|
||||
//this.Translate();
|
||||
|
||||
this.WriteBindings(
|
||||
Bind.Structures.Delegate.Delegates,
|
||||
|
@ -82,12 +82,12 @@ namespace Bind.GL2
|
|||
#endregion
|
||||
|
||||
#region private void Translate()
|
||||
|
||||
#if false
|
||||
protected virtual void Translate()
|
||||
{
|
||||
Bind.Structures.Enum.GLEnums.Translate();
|
||||
}
|
||||
|
||||
#endif
|
||||
#endregion
|
||||
|
||||
#region ISpecReader Members
|
||||
|
@ -404,6 +404,9 @@ namespace Bind.GL2
|
|||
if (words.Length < 2)
|
||||
continue;
|
||||
|
||||
if (((Settings.Compatibility & Settings.Legacy.NoBoolParameters) != Settings.Legacy.None) && words[1] == "bool")
|
||||
words[1] = "Int32";
|
||||
|
||||
CSTypes.Add(words[0], words[1]);
|
||||
}
|
||||
|
||||
|
|
|
@ -61,7 +61,7 @@ namespace Bind.Glu
|
|||
|
||||
// Process enums and delegates - create wrappers.
|
||||
Trace.WriteLine("Processing specs, please wait...");
|
||||
this.Translate();
|
||||
//this.Translate();
|
||||
|
||||
this.WriteBindings(
|
||||
Bind.Structures.Delegate.Delegates,
|
||||
|
|
|
@ -57,7 +57,7 @@ namespace Bind.Glx
|
|||
|
||||
// Process enums and delegates - create wrappers.
|
||||
Trace.WriteLine("Processing specs, please wait...");
|
||||
this.Translate();
|
||||
//this.Translate();
|
||||
|
||||
this.WriteBindings(
|
||||
Bind.Structures.Delegate.Delegates,
|
||||
|
|
|
@ -58,7 +58,7 @@ namespace Bind.Wgl
|
|||
|
||||
// Process enums and delegates - create wrappers.
|
||||
Trace.WriteLine("Processing specs, please wait...");
|
||||
this.Translate();
|
||||
//this.Translate();
|
||||
|
||||
this.WriteBindings(
|
||||
Bind.Structures.Delegate.Delegates,
|
||||
|
|
Loading…
Reference in a new issue