]> git.sesse.net Git - movit/blobdiff - color.150.frag
Make the demo program run with core contexts.
[movit] / color.150.frag
diff --git a/color.150.frag b/color.150.frag
new file mode 100644 (file)
index 0000000..9d3d2db
--- /dev/null
@@ -0,0 +1,11 @@
+#version 150
+
+in vec2 tc;
+in vec4 frag_color;
+
+out vec4 FragColor;
+
+void main()
+{
+       FragColor = frag_color;
+}