mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
9 lines
193 B
C
9 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);
|
|
}
|
|
);
|