summaryrefslogtreecommitdiff
path: root/src/effects/placeholder_effect.h
diff options
context:
space:
mode:
authorskal <pascal.massimino@gmail.com>2026-02-16 21:41:59 +0100
committerskal <pascal.massimino@gmail.com>2026-02-16 21:41:59 +0100
commitbb4f36f9c32a1484b62e80630825cbcec3976cad (patch)
treeae6f5cf2df35a19946206e76027b59653fb9a79a /src/effects/placeholder_effect.h
parentd4aa74ed05f8573beaaa53ad20a38605d2daa0ea (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/effects/placeholder_effect.h')
-rw-r--r--src/effects/placeholder_effect.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/effects/placeholder_effect.h b/src/effects/placeholder_effect.h
index f7917ab..eaa1f6e 100644
--- a/src/effects/placeholder_effect.h
+++ b/src/effects/placeholder_effect.h
@@ -6,9 +6,9 @@
#include "gpu/effect.h"
#include "gpu/uniform_helper.h"
-class PlaceholderEffect : public Effect {
+class Placeholder : public Effect {
public:
- PlaceholderEffect(const GpuContext& ctx, const std::vector<std::string>& inputs,
+ Placeholder(const GpuContext& ctx, const std::vector<std::string>& inputs,
const std::vector<std::string>& outputs,
const char* placeholder_name = "UnknownEffect");