From d806027dcaeadcdd8d2febd88bc46b2fd2c465de Mon Sep 17 00:00:00 2001 From: skal Date: Thu, 21 May 2026 08:10:47 +0200 Subject: style: apply clang-format --- src/effects/ntsc_effect.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'src/effects/ntsc_effect.h') 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& 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& inputs, const std::vector& outputs, float start_time, float end_time) : WgslEffect(ctx, inputs, outputs, start_time, end_time, - ntsc_yiq_shader_wgsl) {} + ntsc_yiq_shader_wgsl) { + } }; -- cgit v1.2.3