summaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorskal <pascal.massimino@gmail.com>2026-01-31 00:47:55 +0100
committerskal <pascal.massimino@gmail.com>2026-01-31 00:47:55 +0100
commit91f557d8777d6185ed47927318973d515f8dcbee (patch)
tree72c6280d8ed98bc19109bc447893da41af0bcecf /src/util
parent8e199322ea4cb51d81c29d84120e4b142f7241b5 (diff)
Implement procedural audio generation, spectral effects, and WebGPU particle system
Diffstat (limited to 'src/util')
-rw-r--r--src/util/mini_math.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/mini_math.h b/src/util/mini_math.h
index b809323..3024737 100644
--- a/src/util/mini_math.h
+++ b/src/util/mini_math.h
@@ -103,7 +103,7 @@ struct vec3 {
struct {
float x, y, z;
float _;
- }; // _ is padding for 16-byte alignment
+ }; // _ is padding for 16-byte alignment
float v[4]; // Size 4 to match alignment
};
vec3(float x = 0, float y = 0, float z = 0) : x(x), y(y), z(z), _(0) {