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