1
0
mirror of https://github.com/libretro/RetroArch synced 2025-03-29 22:20:21 +00:00
aliaspider 24cb240079 (WIIU) add remaining menu shaders.
- move some files around.
2018-01-12 02:54:45 +01:00

15 lines
188 B
GLSL

#version 150
uniform UBO
{
mat4 MVP;
vec2 OutputSize;
float time;
} global;
layout(location = 0) out vec4 FragColor;
void main()
{
FragColor = vec4(0.05, 0.05, 0.05, 1.0);
}