summaryrefslogtreecommitdiffstats
path: root/src/gui/painting/shaders/backingstorecompose.vert
blob: bb8444ade57c9563c6aa136898a2dfab9b6fdc20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#version 440

layout(location = 0) in vec3 position;
layout(location = 1) in vec2 texcoord;

layout(location = 0) out vec2 v_texcoord;

layout(std140, binding = 0) uniform buf {
    mat4 vertexTransform;
    mat3 textureTransform;
    float opacity;
    int swapRedBlue;
};

void main()
{
    v_texcoord = (textureTransform * vec3(texcoord, 1.0)).xy;
    gl_Position = vertexTransform * vec4(position, 1.0);
}