RetroArch/gfx/drivers/gl_shaders/pipeline_xmb_ribbon.glsl.frag.h

10 lines
222 B
C
Raw Normal View History

static const char *stock_fragment_xmb =
2016-04-18 02:50:48 +07:00
"#ifdef GL_ES\n"
"precision mediump float;\n"
"#endif\n"
"uniform float time;\n"
"void main()\n"
"{\n"
" gl_FragColor = vec4(1.0, 1.0, 1.0, 0.05);\n"
"}\n";