aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/scenegraph/shaders/vertexcolor_core.frag
diff options
context:
space:
mode:
Diffstat (limited to 'src/quick/scenegraph/shaders/vertexcolor_core.frag')
-rw-r--r--src/quick/scenegraph/shaders/vertexcolor_core.frag10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/quick/scenegraph/shaders/vertexcolor_core.frag b/src/quick/scenegraph/shaders/vertexcolor_core.frag
new file mode 100644
index 0000000000..84533c2b40
--- /dev/null
+++ b/src/quick/scenegraph/shaders/vertexcolor_core.frag
@@ -0,0 +1,10 @@
+#version 150 core
+
+in vec4 color;
+
+out vec4 fragColor;
+
+void main()
+{
+ fragColor = color;
+} \ No newline at end of file