summaryrefslogtreecommitdiff
path: root/src/location/quickmapitems/rhi/shaders/polyline_linestrip.frag
blob: e9124d27ea4a109ea9fbd178a0f660d973cbc224 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#version 440

layout(location = 0) out vec4 fragColor;

layout(std140, binding = 0) uniform buf {
    mat4 qt_Matrix;
    mat4 mapProjection;
    vec4 center;
    vec4 center_lowpart;
    float opacity;
    float wrapOffset;
    vec4 color;
};

void main() {
    fragColor = color;
}