aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/scenegraph/twotextureproviders/shaders/xorblender.vert
blob: ac9f1364d6f09b931d5e02162f8cdd580bf94b7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
attribute highp vec4 aVertex;
attribute highp vec2 aTexCoord;

uniform highp mat4 qt_Matrix;

varying highp vec2 vTexCoord;

void main()
{
    gl_Position = qt_Matrix * aVertex;
    vTexCoord = aTexCoord;
}