mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-25 08:59:58 +00:00
24cb240079
- move some files around.
15 lines
188 B
GLSL
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);
|
|
}
|