RetroArch/gfx/drivers/gl_shaders/pipeline_xmb_ribbon_simple.glsl.frag.h
2016-05-28 18:18:23 +02:00

14 lines
235 B
C

#include "shaders_common.h"
static const char *stock_fragment_xmb_simple = GLSL(
#ifdef GL_ES
precision mediump float;
#endif
uniform float time;
void main()
{
gl_FragColor = vec4(1.0, 1.0, 1.0, 0.05);
}
);