summaryrefslogtreecommitdiff
path: root/src/effects/ntsc_effect.h
diff options
context:
space:
mode:
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) {
+ }
};