summaryrefslogtreecommitdiff
path: root/ffmpeg-shadertoy/vs.glsl
diff options
context:
space:
mode:
authorHunter Kvalevog <hunter@kvog.sh>2025-09-18 22:47:52 -0500
committerHunter Kvalevog <hunter@kvog.sh>2025-09-18 23:40:09 -0500
commitdaa1259c15f522dfa7ece15e3f9d09d437d4be18 (patch)
tree7edc6ad67a55c4dbf4311d6255e3d196c51c3252 /ffmpeg-shadertoy/vs.glsl
parent172718cc6e0dcae569a94769b5444bca55e4d20c (diff)
ffmpeg-shadertoy
Diffstat (limited to 'ffmpeg-shadertoy/vs.glsl')
-rw-r--r--ffmpeg-shadertoy/vs.glsl9
1 files changed, 9 insertions, 0 deletions
diff --git a/ffmpeg-shadertoy/vs.glsl b/ffmpeg-shadertoy/vs.glsl
new file mode 100644
index 0000000..57bcc37
--- /dev/null
+++ b/ffmpeg-shadertoy/vs.glsl
@@ -0,0 +1,9 @@
+#version 330 core
+
+layout (location = 0) in vec3 p;
+layout (location = 1) in vec2 t;
+
+void main()
+{
+ gl_Position = vec4(p, 1.0f);
+}