mirror of
https://github.com/SK-la/osu-resources.git
synced 2026-03-13 11:20:29 +00:00
10 lines
128 B
GLSL
10 lines
128 B
GLSL
#ifdef GL_ES
|
|
precision mediump float;
|
|
#endif
|
|
|
|
varying vec4 v_Colour;
|
|
|
|
void main(void)
|
|
{
|
|
gl_FragColor = v_Colour;
|
|
} |