summaryrefslogtreecommitdiff
path: root/ffmpeg-shadertoy/vs.glsl
diff options
context:
space:
mode:
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);
+}