1
0
mirror of https://github.com/libretro/RetroArch synced 2025-03-31 19:21:06 +00:00
RetroArch/gfx/drivers/gl_shaders/pipeline_xmb_ribbon_simple.glsl.frag.h
2016-05-30 08:51:41 +02:00

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);
}
);