aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/scenegraph/shaders_ng/texture.vert
blob: ae8a27f4a6716901d4255b3caf77c59018b1c185 (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
25
#version 440

layout(location = 0) in vec4 qt_VertexPosition;
layout(location = 1) in vec2 qt_VertexTexCoord;

layout(location = 0) out vec2 qt_TexCoord;

layout(std140, binding = 0) uniform buf {
#if QSHADER_VIEW_COUNT >= 2
    mat4 qt_Matrix[QSHADER_VIEW_COUNT];
#else
    mat4 qt_Matrix;
#endif
    float opacity;
};

void main()
{
    qt_TexCoord = qt_VertexTexCoord;
#if QSHADER_VIEW_COUNT >= 2
    gl_Position = qt_Matrix[gl_ViewIndex] * qt_VertexPosition;
#else
    gl_Position = qt_Matrix * qt_VertexPosition;
#endif
}