diff options
| author | Colin Bellino <git@colinbellino.com> | 2024-10-16 18:01:35 +0200 |
|---|---|---|
| committer | Colin Bellino <git@colinbellino.com> | 2024-10-16 18:01:35 +0200 |
| commit | 23a812cde7521132595a3c6854b26de2fa48cf0b (patch) | |
| tree | 8a248a54023b51d2d57255973354c097f495cbca /bindgen | |
| parent | cbcc2b9ebc78517eda4fc5f6cb95639d89811f98 (diff) | |
Rename *_wasm_wgpu_* to *_wasm_gl_*
Diffstat (limited to 'bindgen')
| -rw-r--r-- | bindgen/gen_jai.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bindgen/gen_jai.py b/bindgen/gen_jai.py index a9958099..376d89af 100644 --- a/bindgen/gen_jai.py +++ b/bindgen/gen_jai.py @@ -384,8 +384,8 @@ def gen_c_imports(inp, c_prefix, prefix): l(f' #if DEBUG {{ {clib_import} :: #library,no_dll "{clib_prefix}_linux_x64_gl_debug"; }}') l(f' else {{ {clib_import} :: #library,no_dll "{clib_prefix}_linux_x64_gl_release"; }}') l( '} else #if OS == .WASM {') - l(f' #if DEBUG {{ {clib_import} :: #library,no_dll "{clib_prefix}_wasm_wgpu_debug"; }}') - l(f' else {{ {clib_import} :: #library,no_dll "{clib_prefix}_wasm_wgpu_release"; }}') + l(f' #if DEBUG {{ {clib_import} :: #library,no_dll "{clib_prefix}_wasm_gl_debug"; }}') + l(f' else {{ {clib_import} :: #library,no_dll "{clib_prefix}_wasm_gl_release"; }}') l( '} else {') l( ' log_error("This OS is currently not supported");') l( '}') |