RetroArch/gfx/drivers/gl_shaders/pipeline_xmb_ribbon_simple.cg.frag.h
2021-01-06 19:14:30 +01:00

10 lines
193 B
C

#include "shaders_common.h"
static const char *stock_fragment_xmb_ribbon_simple = CG(
void main(
float4 out oColor : COLOR)
{
oColor = float4(0.05, 0.05, 0.05, 1.0);
}
);