summaryrefslogtreecommitdiff
path: root/src/gpu/sdf_effect.h
diff options
context:
space:
mode:
authorskal <pascal.massimino@gmail.com>2026-02-16 17:04:41 +0100
committerskal <pascal.massimino@gmail.com>2026-02-16 17:04:41 +0100
commitc79ebff06ae74135c5f67ecc01d5bb55aeb5eda9 (patch)
tree6521b1ed109668715a4a75a27e2f6a13218ae480 /src/gpu/sdf_effect.h
parent5eba3e77c58941ee02257f077a80558dd152a52e (diff)
fix: calculate beat_phase for FlashEffect and refactor uniforms
- seq_compiler.py: Calculate beat_phase from beat_time (was hardcoded 0.0f) - Refactor: Replace CommonPostProcessUniforms with UniformsSequenceParams - Remove duplicate struct definition in post_process_helper.h - Update all CNN effects and tests to use unified uniform struct - Fixes FlashEffect showing solid white instead of flashing to beat Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Diffstat (limited to 'src/gpu/sdf_effect.h')
-rw-r--r--src/gpu/sdf_effect.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpu/sdf_effect.h b/src/gpu/sdf_effect.h
index 4f23604..aacea69 100644
--- a/src/gpu/sdf_effect.h
+++ b/src/gpu/sdf_effect.h
@@ -12,7 +12,7 @@
// Provides CameraParams uniform buffer and helper methods
//
// Binding convention:
-// @group(0) @binding(2): CommonPostProcessUniforms (from Effect base)
+// @group(0) @binding(2): UniformsSequenceParams (from Effect base)
// @group(0) @binding(3): CameraParams
// @group(0) @binding(4+): Per-effect custom parameters
class SDFEffect : public Effect {