aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/shapes/shaders/blit.vert
diff options
context:
space:
mode:
Diffstat (limited to 'src/imports/shapes/shaders/blit.vert')
-rw-r--r--src/imports/shapes/shaders/blit.vert12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/imports/shapes/shaders/blit.vert b/src/imports/shapes/shaders/blit.vert
new file mode 100644
index 0000000000..f8306bd945
--- /dev/null
+++ b/src/imports/shapes/shaders/blit.vert
@@ -0,0 +1,12 @@
+uniform highp mat4 qt_Matrix;
+
+attribute highp vec4 qt_Vertex;
+attribute highp vec2 qt_MultiTexCoord0;
+
+varying highp vec2 qt_TexCoord0;
+
+void main()
+{
+ qt_TexCoord0 = qt_MultiTexCoord0;
+ gl_Position = qt_Matrix * qt_Vertex;
+}