1
1
This repository has been archived on 2023-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-archive/source/blender/gpu/tests/shaders/gpu_compute_ibo_test.glsl

5 lines
109 B
GLSL

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