Files
test2/source/blender/gpu/tests/shaders/gpu_compute_2d_test.glsl
2023-02-02 13:16:39 +01:00

6 lines
123 B
GLSL

void main()
{
vec4 pixel = vec4(1.0, 0.5, 0.2, 1.0);
imageStore(img_output, ivec2(gl_GlobalInvocationID.xy), pixel);
}