add support for GLFW3
This commit is contained in:
parent
d9acf89784
commit
be45bef9f1
8 changed files with 6241 additions and 3 deletions
|
@ -19,7 +19,7 @@ import inflection, sys, json
|
|||
|
||||
known_functions = {}
|
||||
known_structs = {}
|
||||
for filename in (Path("raylib.json"), Path("raymath.json"), Path("rlgl.json"), Path("raygui.json"), Path("physac.json")):
|
||||
for filename in (Path("raylib.json"), Path("raymath.json"), Path("rlgl.json"), Path("raygui.json"), Path("physac.json"), Path("glfw3.json")):
|
||||
f = open(filename, "r")
|
||||
js = json.load(f)
|
||||
for fn in js["functions"]:
|
||||
|
|
Reference in a new issue