Files
test2/source/blender/gpu/tests/shaders/gpu_compute_ibo_test.glsl
2023-01-31 15:49:04 +11:00

5 lines
109 B
GLSL

void main() {
uint store_index = int(gl_GlobalInvocationID.x);
out_indices[store_index] = store_index;
}