diff options
| author | skal <pascal.massimino@gmail.com> | 2026-02-16 21:41:59 +0100 |
|---|---|---|
| committer | skal <pascal.massimino@gmail.com> | 2026-02-16 21:41:59 +0100 |
| commit | bb4f36f9c32a1484b62e80630825cbcec3976cad (patch) | |
| tree | ae6f5cf2df35a19946206e76027b59653fb9a79a /src/tests/gpu/test_sequence_e2e.cc | |
| parent | d4aa74ed05f8573beaaa53ad20a38605d2daa0ea (diff) | |
refactor: complete removal of 'Effect' suffix from C++ class names
Update effect class definitions in headers and implementations to match
timeline.seq naming convention. All tests passing (34/34).
Classes renamed:
- PassthroughEffect → Passthrough
- GaussianBlurEffect → GaussianBlur
- PlaceholderEffect → Placeholder
- HeptagonEffect → Heptagon
- ParticlesEffect → Particles
- RotatingCubeEffect → RotatingCube
- Hybrid3DEffect → Hybrid3D
- FlashEffect → Flash
- PeakMeterEffect → PeakMeter
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Diffstat (limited to 'src/tests/gpu/test_sequence_e2e.cc')
| -rw-r--r-- | src/tests/gpu/test_sequence_e2e.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/gpu/test_sequence_e2e.cc b/src/tests/gpu/test_sequence_e2e.cc index 91a8da2..46c6ec1 100644 --- a/src/tests/gpu/test_sequence_e2e.cc +++ b/src/tests/gpu/test_sequence_e2e.cc @@ -22,7 +22,7 @@ class SimpleTestSequence : public Sequence { // Effect DAG construction (2 effects: source->temp->sink) effect_dag_.push_back({ - .effect = std::make_shared<PassthroughEffect>(ctx, + .effect = std::make_shared<Passthrough>(ctx, std::vector<std::string>{"source"}, std::vector<std::string>{"temp"}), .input_nodes = {"source"}, @@ -30,7 +30,7 @@ class SimpleTestSequence : public Sequence { .execution_order = 0 }); effect_dag_.push_back({ - .effect = std::make_shared<PassthroughEffect>(ctx, + .effect = std::make_shared<Passthrough>(ctx, std::vector<std::string>{"temp"}, std::vector<std::string>{"sink"}), .input_nodes = {"temp"}, |
