mirror of
https://github.com/libretro/RetroArch
synced 2025-02-03 08:54:13 +00:00
9 lines
128 B
GLSL
9 lines
128 B
GLSL
|
#version 450
|
||
|
|
||
|
layout(location = 0) out vec4 FragColor;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
FragColor = vec4(gl_SamplePosition, gl_SampleID, 1.0);
|
||
|
}
|