diff options
| author | Gustav Olsson <gustav.olsson@hey.com> | 2022-05-18 00:39:24 +0200 |
|---|---|---|
| committer | Gustav Olsson <gustav.olsson@hey.com> | 2022-05-18 02:03:36 +0200 |
| commit | ea8a628c2e5b83ba4717aae7012230a23ed1566f (patch) | |
| tree | 1c831504f4be8c535b85ccb46d826f0a517699b6 /bindgen/gen_all.py | |
| parent | 173da5b453a54721fa5a9b312b99de656e885c45 (diff) | |
update nim bindgen
* follow nim code style
* avoid keyword clashes
* remove redundant functions
* use nim bitfields for some consts
* generate bindings for sokol_glue.h
Diffstat (limited to 'bindgen/gen_all.py')
| -rw-r--r-- | bindgen/gen_all.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bindgen/gen_all.py b/bindgen/gen_all.py index dc409d2b..112ca8fc 100644 --- a/bindgen/gen_all.py +++ b/bindgen/gen_all.py @@ -3,6 +3,7 @@ import os, gen_nim, gen_zig tasks = [ [ '../sokol_gfx.h', 'sg_', [] ], [ '../sokol_app.h', 'sapp_', [] ], + [ '../sokol_glue.h', 'sapp_sg', ['sg_'] ], [ '../sokol_time.h', 'stm_', [] ], [ '../sokol_audio.h', 'saudio_', [] ], [ '../util/sokol_gl.h', 'sgl_', ['sg_'] ], |