mirror of
https://github.com/libretro/RetroArch
synced 2025-02-21 00:40:09 +00:00
7 lines
78 B
GLSL
7 lines
78 B
GLSL
#version 450
|
|
layout(location = 0) out vec4 V;
|
|
void main()
|
|
{
|
|
V = vec4(1.0);
|
|
}
|