mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-11 17:45:31 +00:00
Do not process the function category name (we to list the original name for documentation and extension checking). The processing is moved to the Type translation code.
This commit is contained in:
parent
4d49dc26fc
commit
643b617362
|
@ -125,7 +125,7 @@ namespace Bind.Structures
|
|||
public string Category
|
||||
{
|
||||
get { return _category; }
|
||||
set { _category = EnumProcessor.TranslateEnumName(value); }
|
||||
set { _category = value; }
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
|
|
@ -356,7 +356,7 @@ namespace Bind.Structures
|
|||
Enum @enum;
|
||||
string s;
|
||||
|
||||
|
||||
category = EnumProcessor.TranslateEnumName(category);
|
||||
|
||||
// Try to find out if it is an enum. If the type exists in the normal GLEnums list, use this.
|
||||
// Otherwise, try to find it in the aux enums list. If it exists in neither, it is not an enum.
|
||||
|
|
Loading…
Reference in a new issue