aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/scenegraph/shaders/rendernode.vert
blob: fbfe9ef8ae50ce60b1d78c57098f7c8868044277 (plain)
1
2
3
4
5
6
7
8
9
10
attribute highp vec4 av;
attribute highp vec2 at;

varying highp vec2 t;

void main()
{
    gl_Position = av;
    t = at;
}