summaryrefslogtreecommitdiffstats
path: root/tests/manual/buffercapture-qml/gl45/bufferSetter.comp
blob: c5a516da7d52b04f2185e12f6c359a586e639220 (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 GPL-3.0-only

#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;
}