summaryrefslogtreecommitdiff
path: root/src/effects/ntsc_rgb.wgsl
diff options
context:
space:
mode:
Diffstat (limited to 'src/effects/ntsc_rgb.wgsl')
-rw-r--r--src/effects/ntsc_rgb.wgsl4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/effects/ntsc_rgb.wgsl b/src/effects/ntsc_rgb.wgsl
index 09adbf1..c377d47 100644
--- a/src/effects/ntsc_rgb.wgsl
+++ b/src/effects/ntsc_rgb.wgsl
@@ -18,3 +18,7 @@ fn sample_ntsc_signal(uv: vec2f) -> vec4f {
}
#include "render/ntsc_common"
+
+@fragment fn fs_main(in: VertexOutput) -> @location(0) vec4f {
+ return render_ntsc(in.st);
+}