From 84e484645ff70d3a63f11ae0d23727c65a8d5c71 Mon Sep 17 00:00:00 2001 From: skal Date: Wed, 28 Jan 2026 22:17:08 +0100 Subject: remove shader.wgsl --- src/gpu/gpu.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/gpu/gpu.cc') diff --git a/src/gpu/gpu.cc b/src/gpu/gpu.cc index f374908..4d110e7 100644 --- a/src/gpu/gpu.cc +++ b/src/gpu/gpu.cc @@ -136,7 +136,7 @@ fn fs_main() -> @location(0) vec4 { // Dynamic color shifting based on time and responsiveness to peak let h = uniforms.time * 2.0 + uniforms.audio_peak * 3.0; let r = sin(h + 0.0) * 0.5 + 0.5; - let g = sin(h + 2.0) * 0.5 + 0.5; + let g = sin(h + 2.0) * 0.9 + 0.3; let b = sin(h + 4.0) * 0.5 + 0.5; // Add brightness boost on peak -- cgit v1.2.3