mirror of
https://github.com/libretro/RetroArch
synced 2025-02-01 20:54:10 +00:00
11 lines
263 B
GLSL
11 lines
263 B
GLSL
|
#version 450
|
||
|
layout(location = 0) out vec4 FragColor;
|
||
|
layout(binding = 0) uniform sampler2DMSArray uTexture;
|
||
|
layout(location = 0) flat in ivec3 vCoord;
|
||
|
layout(location = 1) flat in int vSample;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
FragColor = texelFetch(uTexture, vCoord, vSample);
|
||
|
}
|