mirror of
https://github.com/libretro/RetroArch
synced 2025-01-01 12:11:47 +00:00
11 lines
181 B
C
11 lines
181 B
C
#include "shaders_common.h"
|
|
|
|
static const char *stock_fragment_xmb_simple = GLSL(
|
|
uniform float time;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = vec4(1.0, 1.0, 1.0, 0.05);
|
|
}
|
|
);
|