diff options
| author | skal <pascal.massimino@gmail.com> | 2026-02-16 17:04:41 +0100 |
|---|---|---|
| committer | skal <pascal.massimino@gmail.com> | 2026-02-16 17:04:41 +0100 |
| commit | c79ebff06ae74135c5f67ecc01d5bb55aeb5eda9 (patch) | |
| tree | 6521b1ed109668715a4a75a27e2f6a13218ae480 /src/app | |
| parent | 5eba3e77c58941ee02257f077a80558dd152a52e (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/app')
| -rw-r--r-- | src/app/test_demo.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/test_demo.cc b/src/app/test_demo.cc index cf1a577..83e6f8b 100644 --- a/src/app/test_demo.cc +++ b/src/app/test_demo.cc @@ -95,7 +95,7 @@ class PeakMeterEffect : public PostProcessEffectV2 { } void render(WGPURenderPassEncoder pass, - const CommonPostProcessUniforms& uniforms) override { + const UniformsSequenceParams& uniforms) override { uniforms_.update(ctx_.queue, uniforms); PostProcessEffect::render(pass, uniforms); } |
