// Scratch effect - film scratch overlay post-process #pragma once #include "effects/shaders.h" #include "gpu/wgsl_effect.h" struct Scratch : public WgslEffect { Scratch(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, scratch_shader_wgsl) {} };