mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-24 20:35:28 +00:00
Fixed input from the auxilliary enum file (GL2\\enum.spec)
This commit is contained in:
parent
401686381c
commit
c7f56ca172
|
@ -14,6 +14,8 @@ namespace Bind.Glu
|
||||||
{
|
{
|
||||||
class Generator : Bind.GL2.Generator
|
class Generator : Bind.GL2.Generator
|
||||||
{
|
{
|
||||||
|
string enumSpecAux = "GL2\\enum.spec";
|
||||||
|
|
||||||
#region --- Constructors ---
|
#region --- Constructors ---
|
||||||
|
|
||||||
public Generator()
|
public Generator()
|
||||||
|
@ -51,7 +53,7 @@ namespace Bind.Glu
|
||||||
public override void Process()
|
public override void Process()
|
||||||
{
|
{
|
||||||
Bind.Structures.Type.Initialize(glTypemap, csTypemap);
|
Bind.Structures.Type.Initialize(glTypemap, csTypemap);
|
||||||
Bind.Structures.Enum.Initialize(enumSpec, enumSpecExt);
|
Bind.Structures.Enum.Initialize(enumSpec, enumSpecExt, enumSpecAux);
|
||||||
Bind.Structures.Function.Initialize();
|
Bind.Structures.Function.Initialize();
|
||||||
Bind.Structures.Delegate.Initialize(glSpec, glSpecExt);
|
Bind.Structures.Delegate.Initialize(glSpec, glSpecExt);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue