aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/scenegraph/shaders/opaquetexture.frag
diff options
context:
space:
mode:
Diffstat (limited to 'src/quick/scenegraph/shaders/opaquetexture.frag')
-rw-r--r--src/quick/scenegraph/shaders/opaquetexture.frag8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/quick/scenegraph/shaders/opaquetexture.frag b/src/quick/scenegraph/shaders/opaquetexture.frag
new file mode 100644
index 0000000000..b7e07de385
--- /dev/null
+++ b/src/quick/scenegraph/shaders/opaquetexture.frag
@@ -0,0 +1,8 @@
+varying highp vec2 qt_TexCoord;
+
+uniform sampler2D qt_Texture;
+
+void main()
+{
+ gl_FragColor = texture2D(qt_Texture, qt_TexCoord);
+} \ No newline at end of file