diff options
| author | gingerBill <bill@gingerbill.org> | 2024-06-20 12:20:06 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2024-06-20 12:20:06 +0100 |
| commit | 3db7780a2c99cedf7a784e1d117e9a8eaf947ee5 (patch) | |
| tree | 04143c56ef550ce3406fea8d55591c42e958fac5 /examples | |
| parent | 8b446fc88d7b6238ccff8fa17e0611ab872f50d0 (diff) | |
Add `vendor:wgpu` to `examples/all`
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/all/all_vendor.odin | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/all/all_vendor.odin b/examples/all/all_vendor.odin index 1ab1debea..afa140305 100644 --- a/examples/all/all_vendor.odin +++ b/examples/all/all_vendor.odin @@ -20,6 +20,7 @@ import MIX "vendor:sdl2/mixer" import TTF "vendor:sdl2/ttf" import vk "vendor:vulkan" +import wgpu "vendor:wgpu" // NOTE(bill): only one can be checked at a time import lua_5_4 "vendor:lua/5.4" @@ -50,6 +51,7 @@ _ :: MIX _ :: TTF _ :: vk +_ :: wgpu _ :: lua_5_4 |