aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/scenegraph/shaders/styledtext.vert
blob: 7001bbc2627f18ef446542c471e75845a8080d85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
uniform highp mat4 matrix;
uniform highp vec2 textureScale;
uniform highp vec2 shift;
uniform highp float dpr;

attribute highp vec4 vCoord;
attribute highp vec2 tCoord;

varying highp vec2 sampleCoord;
varying highp vec2 shiftedSampleCoord;

void main()
{
     sampleCoord = tCoord * textureScale;
     shiftedSampleCoord = (tCoord - shift) * textureScale;
     gl_Position = matrix * floor(vCoord * dpr + 0.5) / dpr;
}