File tree Expand file tree Collapse file tree 1 file changed +8
-15
lines changed
Expand file tree Collapse file tree 1 file changed +8
-15
lines changed Original file line number Diff line number Diff line change 1- //--------------------------------------------------------------------------------------------------
1+ // ==============================================================================
22//
33// SIMD math library for game developers
44// https://github.com/michal-z/zig-gamedev/tree/main/libs/zmath
55//
6- // See zmath.zig for more details.
76// See util.zig for additional functionality.
87//
9- //--------------------------------------------------------------------------------------------------
10- pub const util = @import ("util.zig" );
11-
12- // ensure transitive closure of test coverage
13- comptime {
14- _ = util ;
15- }
16-
17- // ==============================================================================
18- //
19- // SIMD math library for game developers
20- // https://github.com/michal-z/zig-gamedev/tree/main/libs/zmath
21- //
228// Should work on all OSes supported by Zig. Works on x86_64 and ARM.
239// Provides ~140 optimized routines and ~70 extensive tests.
2410// Can be used with any graphics API.
@@ -278,6 +264,13 @@ comptime {
278264//
279265// ==============================================================================
280266
267+ pub const util = @import ("util.zig" );
268+
269+ // ensure transitive closure of test coverage
270+ comptime {
271+ _ = util ;
272+ }
273+
281274// Fundamental types
282275pub const F32x4 = @Vector (4 , f32 );
283276pub const F32x8 = @Vector (8 , f32 );
You can’t perform that action at this time.
0 commit comments