From bb4f36f9c32a1484b62e80630825cbcec3976cad Mon Sep 17 00:00:00 2001 From: skal Date: Mon, 16 Feb 2026 21:41:59 +0100 Subject: refactor: complete removal of 'Effect' suffix from C++ class names MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- src/effects/hybrid3_d_effect.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/effects/hybrid3_d_effect.h') diff --git a/src/effects/hybrid3_d_effect.h b/src/effects/hybrid3_d_effect.h index e6e0f49..7950374 100644 --- a/src/effects/hybrid3_d_effect.h +++ b/src/effects/hybrid3_d_effect.h @@ -9,12 +9,12 @@ #include "3d/scene.h" #include "gpu/effect.h" -class Hybrid3DEffect : public Effect { +class Hybrid3D : public Effect { public: - Hybrid3DEffect(const GpuContext& ctx, + Hybrid3D(const GpuContext& ctx, const std::vector& inputs, const std::vector& outputs); - ~Hybrid3DEffect() override; + ~Hybrid3D() override; void declare_nodes(NodeRegistry& registry) override; void render(WGPUCommandEncoder encoder, -- cgit v1.2.3