mirror of
https://github.com/libretro/RetroArch.git
synced 2024-12-12 19:21:33 +00:00
9 lines
141 B
GLSL
9 lines
141 B
GLSL
|
#version 310 es
|
||
|
precision mediump float;
|
||
|
|
||
|
layout(location = 0) out vec4 FragColor;
|
||
|
void main()
|
||
|
{
|
||
|
FragColor = vec4(1.0, 1.0, 1.0, 0.05);
|
||
|
}
|