summaryrefslogtreecommitdiff
path: root/src/effects/ntsc_effect.h
diff options
context:
space:
mode:
authorskal <pascal.massimino@gmail.com>2026-05-21 08:10:47 +0200
committerskal <pascal.massimino@gmail.com>2026-05-21 08:10:47 +0200
commitd806027dcaeadcdd8d2febd88bc46b2fd2c465de (patch)
tree30bc1ef9f40ccab7c00e31ee20e62bb86755fa26 /src/effects/ntsc_effect.h
parent680042a18c11ad5e58757e45b260745c2f52417f (diff)
style: apply clang-formatHEADmain
Diffstat (limited to 'src/effects/ntsc_effect.h')
-rw-r--r--src/effects/ntsc_effect.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/effects/ntsc_effect.h b/src/effects/ntsc_effect.h
index 4737291..b975c4d 100644
--- a/src/effects/ntsc_effect.h
+++ b/src/effects/ntsc_effect.h
@@ -9,14 +9,17 @@ struct Ntsc : public WgslEffect {
const std::vector<std::string>& outputs, float start_time,
float end_time)
: WgslEffect(ctx, inputs, outputs, start_time, end_time,
- ntsc_rgb_shader_wgsl) {}
+ ntsc_rgb_shader_wgsl) {
+ }
};
-// YIQ input: input texture already stores luma/chroma/phase (e.g. RotatingCube output).
+// YIQ input: input texture already stores luma/chroma/phase (e.g. RotatingCube
+// output).
struct NtscYiq : public WgslEffect {
NtscYiq(const GpuContext& ctx, const std::vector<std::string>& inputs,
const std::vector<std::string>& outputs, float start_time,
float end_time)
: WgslEffect(ctx, inputs, outputs, start_time, end_time,
- ntsc_yiq_shader_wgsl) {}
+ ntsc_yiq_shader_wgsl) {
+ }
};