diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-08-08 13:29:49 +0100 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2025-08-08 13:29:49 +0100 |
| commit | 804984ed35faceee3e7629dff0c8d9df86db3d98 (patch) | |
| tree | 7c3ff702b4fc0ce739e1f7cbb3bf7768da53a0cd /vendor/wgpu | |
| parent | 7c93a5ae802b5a17aff6fea7368f9b27deed6517 (diff) | |
`contextless` fixes for `js`
Diffstat (limited to 'vendor/wgpu')
| -rw-r--r-- | vendor/wgpu/wgpu_js.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/wgpu/wgpu_js.odin b/vendor/wgpu/wgpu_js.odin index 3c8375adb..3217a97dc 100644 --- a/vendor/wgpu/wgpu_js.odin +++ b/vendor/wgpu/wgpu_js.odin @@ -5,7 +5,7 @@ import "base:runtime" g_context: runtime.Context @(private="file", init) -wgpu_init_allocator :: proc() { +wgpu_init_allocator :: proc "contextless" () { if g_context.allocator.procedure == nil { g_context = runtime.default_context() } |