summaryrefslogtreecommitdiffstats
path: root/tests/manual/buffercapture-qml/gl45/bufferSetter.comp
blob: cb9b80af1bee0d589b4081f1520327a8e1cdac24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (C) 2017 Juan José Casafranca.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#version 450 core

layout (local_size_x=32) in;

layout (std430, binding = 3) buffer InputBuffer
{
    uint d[];
};

layout(std140, binding=4) uniform custom_uniforms {
    int inputSize;
};

void main()
{
    if (gl_GlobalInvocationID.x < inputSize)
        d[gl_GlobalInvocationID.x] = d[gl_GlobalInvocationID.x] + gl_GlobalInvocationID.x * 2;
}