mirror of
https://github.com/libretro/RetroArch
synced 2025-02-01 20:54:10 +00:00
10 lines
193 B
C
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);
|
|
}
|
|
);
|