diff options
| author | gingerBill <bill@gingerbill.org> | 2021-10-02 14:06:11 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-10-02 14:06:11 +0100 |
| commit | 92a0ce991e5fbf653dff12c788c335f637ec2be3 (patch) | |
| tree | 2238b183f7ea58bdba467fa0600c4c981154d7e4 | |
| parent | 1e7c60e1718a64e55297475e97caacfd8bde578e (diff) | |
Update examples/all
| -rw-r--r-- | examples/all/all_experimental.odin | 5 | ||||
| -rw-r--r-- | examples/all/all_main.odin | 53 | ||||
| -rw-r--r-- | examples/all/all_vendor.odin | 11 |
3 files changed, 69 insertions, 0 deletions
diff --git a/examples/all/all_experimental.odin b/examples/all/all_experimental.odin index 0c3a8ad6f..9679e0ca4 100644 --- a/examples/all/all_experimental.odin +++ b/examples/all/all_experimental.odin @@ -3,3 +3,8 @@ package all import c_tokenizer "core:c/frontend/tokenizer" import c_preprocessor "core:c/frontend/preprocessor" +import virtual "core:mem/virtual" + +_ :: c_tokenizer +_ :: c_preprocessor +_ :: virtual diff --git a/examples/all/all_main.odin b/examples/all/all_main.odin index e85569343..2351a87f8 100644 --- a/examples/all/all_main.odin +++ b/examples/all/all_main.odin @@ -56,3 +56,56 @@ import utf8 "core:unicode/utf8" import utf16 "core:unicode/utf16" main :: proc(){} + + +_ :: bufio +_ :: bytes +_ :: c +_ :: libc +_ :: compress +_ :: gzip +_ :: zlib +_ :: container +_ :: dynlib +_ :: encoding +_ :: base32 +_ :: base64 +_ :: csv +_ :: hxa +_ :: json +_ :: fmt +_ :: hash +_ :: image +_ :: png +_ :: io +_ :: log +_ :: math +_ :: big +_ :: bits +_ :: fixed +_ :: linalg +_ :: rand +_ :: mem +_ :: ast +_ :: doc_format +_ :: odin_format +_ :: odin_parser +_ :: odin_printer +_ :: odin_tokenizer +_ :: os +_ :: path +_ :: filepath +_ :: reflect +_ :: runtime +_ :: slice +_ :: sort +_ :: strconv +_ :: strings +_ :: sync +_ :: sync2 +_ :: scanner +_ :: thread +_ :: time +_ :: unicode +_ :: utf8 +_ :: utf16
\ No newline at end of file diff --git a/examples/all/all_vendor.odin b/examples/all/all_vendor.odin index 9a2ce1d1e..1ca04380f 100644 --- a/examples/all/all_vendor.odin +++ b/examples/all/all_vendor.odin @@ -11,3 +11,14 @@ import SDLNet "vendor:sdl2/net" import MIX "vendor:sdl2/mixer" import TTF "vendor:sdl2/ttf" import vk "vendor:vulkan" + +_ :: glfw +_ :: gl +_ :: rl +_ :: PM +_ :: SDL +_ :: IMG +_ :: SDLNet +_ :: MIX +_ :: TTF +_ :: vk
\ No newline at end of file |