diff options
| author | gingerBill <bill@gingerbill.org> | 2021-11-04 19:30:46 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-11-04 19:30:46 +0000 |
| commit | 23c74bc67bc02c543f34275a836d2e05a4b7e59d (patch) | |
| tree | 24c172a7d8c5e9b2375a621baf93d5a3973f9ec0 /examples | |
| parent | a22120fe947fc0a950f3b2ef04753b573a989885 (diff) | |
Update `all_main.odin` to include `core:math/linalg/hlsl`
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/all/all_main.odin | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/all/all_main.odin b/examples/all/all_main.odin index 92026fe2c..a88cc273e 100644 --- a/examples/all/all_main.odin +++ b/examples/all/all_main.odin @@ -30,6 +30,7 @@ import bits "core:math/bits" import fixed "core:math/fixed" import linalg "core:math/linalg" import glm "core:math/linalg/glsl" +import hlm "core:math/linalg/hlsl" import rand "core:math/rand" import mem "core:mem" import ast "core:odin/ast" @@ -86,6 +87,7 @@ _ :: bits _ :: fixed _ :: linalg _ :: glm +_ :: hlm _ :: rand _ :: mem _ :: ast |