mirror of
https://github.com/libretro/RetroArch
synced 2025-02-01 00:32:46 +00:00
13 lines
274 B
GLSL
13 lines
274 B
GLSL
#version 450
|
|
|
|
layout(binding = 0) uniform sampler2DMS uSampler;
|
|
layout(binding = 2, rgba8) uniform readonly writeonly image2DMS uImage;
|
|
|
|
layout(location = 0) out vec4 FragColor;
|
|
|
|
void main()
|
|
{
|
|
FragColor = vec4(float(textureSamples(uSampler) + imageSamples(uImage)));
|
|
}
|
|
|