summaryrefslogtreecommitdiff
path: root/common/shaders/sequence_uniforms.wgsl
diff options
context:
space:
mode:
authorskal <pascal.massimino@gmail.com>2026-02-28 02:39:04 +0100
committerskal <pascal.massimino@gmail.com>2026-02-28 02:39:04 +0100
commit472c2258dbeca000a454ea1781f09df63477563e (patch)
tree98ac75c3824f19f4a598a807b3cb6aa13e8cb0c3 /common/shaders/sequence_uniforms.wgsl
parent1c5a9fb7b8c704a59ec58894adf46d73d1615072 (diff)
replace wgsl type: vec4<f32> -> vec4f ..
Diffstat (limited to 'common/shaders/sequence_uniforms.wgsl')
-rw-r--r--common/shaders/sequence_uniforms.wgsl2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/shaders/sequence_uniforms.wgsl b/common/shaders/sequence_uniforms.wgsl
index 290f89b..1aef34e 100644
--- a/common/shaders/sequence_uniforms.wgsl
+++ b/common/shaders/sequence_uniforms.wgsl
@@ -2,7 +2,7 @@
// Matches UniformsSequenceParams in sequence.h
struct UniformsSequenceParams {
- resolution: vec2<f32>,
+ resolution: vec2f,
aspect_ratio: f32,
time: f32,
beat_time: f32,