aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/scenegraph/shaders/sprite_core.vert
blob: 5027bf03fce5fa7a2cf8c0c67ed7fe04a1b128d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#version 150 core

in vec2 vPos;
in vec2 vTex;

out vec4 fTexS;
out float progress;

uniform vec3 animData;  // w,h(premultiplied of anim), interpolation progress
uniform vec4 animPos;   // x,y, x,y (two frames for interpolation)
uniform mat4 qt_Matrix;

void main()
{
    progress = animData.z;

    // Calculate frame location in texture
    fTexS.xy = animPos.xy + vTex.xy * animData.xy;

    // Next frame is also passed, for interpolation
    fTexS.zw = animPos.zw + vTex.xy * animData.xy;

    gl_Position = qt_Matrix * vec4(vPos.x, vPos.y, 0, 1);
}