diff options
| author | skal <pascal.massimino@gmail.com> | 2026-02-28 02:39:04 +0100 |
|---|---|---|
| committer | skal <pascal.massimino@gmail.com> | 2026-02-28 02:39:04 +0100 |
| commit | 472c2258dbeca000a454ea1781f09df63477563e (patch) | |
| tree | 98ac75c3824f19f4a598a807b3cb6aa13e8cb0c3 /workspaces/main/shaders/main_shader.wgsl | |
| parent | 1c5a9fb7b8c704a59ec58894adf46d73d1615072 (diff) | |
replace wgsl type: vec4<f32> -> vec4f ..
Diffstat (limited to 'workspaces/main/shaders/main_shader.wgsl')
| -rw-r--r-- | workspaces/main/shaders/main_shader.wgsl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/workspaces/main/shaders/main_shader.wgsl b/workspaces/main/shaders/main_shader.wgsl index 1cc2f69..5c5b0d9 100644 --- a/workspaces/main/shaders/main_shader.wgsl +++ b/workspaces/main/shaders/main_shader.wgsl @@ -21,5 +21,5 @@ let g = sin(h + 2.0) * 0.9 + 0.3; let b = sin(h + 4.0) * 0.5 + 0.5; let boost = uniforms.audio_intensity * 0.5; - return vec4<f32>(r + boost, g + boost, b + boost, 1.0); + return vec4f(r + boost, g + boost, b + boost, 1.0); } |
