aboutsummaryrefslogtreecommitdiffstats
path: root/tests/baseline/scenegraph/data/shared/shaders/basic.frag
diff options
context:
space:
mode:
Diffstat (limited to 'tests/baseline/scenegraph/data/shared/shaders/basic.frag')
-rw-r--r--tests/baseline/scenegraph/data/shared/shaders/basic.frag8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/baseline/scenegraph/data/shared/shaders/basic.frag b/tests/baseline/scenegraph/data/shared/shaders/basic.frag
new file mode 100644
index 0000000000..aa850af449
--- /dev/null
+++ b/tests/baseline/scenegraph/data/shared/shaders/basic.frag
@@ -0,0 +1,8 @@
+#version 440
+
+layout(location = 0) in vec2 qt_TexCoord0;
+layout(location = 0) out vec4 fragColor;
+
+void main() {
+ fragColor = vec4(qt_TexCoord0.x, qt_TexCoord0.y, 1, 1);
+}