mirror of
https://github.com/libretro/RetroArch
synced 2025-02-21 00:40:09 +00:00
11 lines
282 B
Plaintext
11 lines
282 B
Plaintext
|
#version 450
|
||
|
|
||
|
layout(set = 0, binding = 1, r32f) writeonly uniform image2D uImage;
|
||
|
layout(set = 0, binding = 2, r32f) readonly uniform image2D uImageRead;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
ivec2 coord = ivec2(gl_GlobalInvocationID.xy);
|
||
|
imageStore(uImage, coord, imageLoad(uImageRead, coord));
|
||
|
}
|