mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-25 08:15:37 +00:00
Preparatory stuff for naming convention changes.
This commit is contained in:
parent
bd1bf3ca39
commit
60fdfdcdcf
|
@ -24,8 +24,19 @@ namespace Bind
|
||||||
public static string FunctionPrefix = "gl";
|
public static string FunctionPrefix = "gl";
|
||||||
public static string ConstantPrefix = "GL_";
|
public static string ConstantPrefix = "GL_";
|
||||||
|
|
||||||
|
// TODO: This code is too fragile.
|
||||||
public static string NestedEunmsClass = "Enums";
|
public static string NestedEunmsClass = "Enums";
|
||||||
public static string NormalEnumsClass = OutputClass + "." + NestedEunmsClass;
|
private static string normalEnumsClassOverride;
|
||||||
|
public static string NormalEnumsClass
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
if (!String.IsNullOrEmpty(normalEnumsClassOverride))
|
||||||
|
return normalEnumsClassOverride;
|
||||||
|
return OutputClass + "." + NestedEunmsClass;
|
||||||
|
}
|
||||||
|
set { normalEnumsClassOverride = value; }
|
||||||
|
}
|
||||||
public static string AuxEnumsClass = "GL." + NestedEunmsClass;
|
public static string AuxEnumsClass = "GL." + NestedEunmsClass;
|
||||||
|
|
||||||
public static string DelegatesClass = "Delegates";
|
public static string DelegatesClass = "Delegates";
|
||||||
|
|
Loading…
Reference in a new issue