add support for GLFW3

This commit is contained in:
Richard Smith 2024-01-22 14:48:31 +00:00
parent d9acf89784
commit be45bef9f1
8 changed files with 6241 additions and 3 deletions

View file

@ -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"]: