summaryrefslogtreecommitdiff
path: root/src/app/test_demo.cc
diff options
context:
space:
mode:
authorskal <pascal.massimino@gmail.com>2026-02-16 14:32:59 +0100
committerskal <pascal.massimino@gmail.com>2026-02-16 14:32:59 +0100
commitb2ede3f0680edc894a54e28374cb87ab2690afa2 (patch)
tree69e0a8c04eb29be953b037eb98e0a9ac0f1b417a /src/app/test_demo.cc
parent0fd3c982247d05bacbd67db08c865ec67602437f (diff)
refactor: remove v2 versioning artifacts, establish Sequence as canonical system
Complete v1→v2 migration cleanup: rename 29 files (sequence_v2→sequence, effect_v2→effect, 14 effect files, 8 shaders, compiler, docs), update all class names and references across 54 files. Archive v1 timeline. System now uses standard naming with all versioning removed. 30/34 tests passing. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Diffstat (limited to 'src/app/test_demo.cc')
-rw-r--r--src/app/test_demo.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/app/test_demo.cc b/src/app/test_demo.cc
index c2366c3..993ceba 100644
--- a/src/app/test_demo.cc
+++ b/src/app/test_demo.cc
@@ -16,7 +16,7 @@
#include <cstring>
// External declarations from generated test timeline (v2)
-#include "generated/test_timeline_v2.h"
+#include "generated/test_timeline.h"
extern float GetDemoDuration();
// TODO: Port PeakMeterEffect and CNN effects to v2
@@ -226,7 +226,7 @@ int main(int argc, char** argv) {
gpu_init(&platform_state);
// Initialize v2 timeline from test_demo.seq
- InitializeTestV2Sequences(*gpu_get_context(), width, height);
+ InitializeSequences(*gpu_get_context(), width, height);
#if !defined(STRIP_ALL)
// TODO: Port CNN and peak meter effects to v2
@@ -397,8 +397,8 @@ int main(int argc, char** argv) {
// Draw graphics using v2 timeline
const float graphics_frame_time = (float)current_physical_time;
- RenderTestV2Timeline(gpu_get_surface(), graphics_frame_time, width, height,
- absolute_beat_time, visual_peak);
+ RenderTimeline(gpu_get_surface(), graphics_frame_time, width, height,
+ absolute_beat_time, visual_peak);
// Update audio systems (tracker, synth, etc.) based on audio time
// progression