mirror of
https://github.com/libretro/RetroArch
synced 2025-03-25 16:44:01 +00:00
10 lines
159 B
GLSL
10 lines
159 B
GLSL
|
#version 310 es
|
||
|
precision mediump float;
|
||
|
layout(location = 0) in vec4 vColor;
|
||
|
layout(location = 0) out vec4 FragColor;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
FragColor = vColor;
|
||
|
}
|