mirror of
https://github.com/libretro/RetroArch
synced 2025-02-08 15:40:14 +00:00
12 lines
240 B
GLSL
12 lines
240 B
GLSL
#version 310 es
|
|
precision mediump float;
|
|
precision highp int;
|
|
|
|
layout(location = 0) out highp vec3 FragColor;
|
|
|
|
void main()
|
|
{
|
|
FragColor = vec3(uintBitsToFloat(0x7f800000u), uintBitsToFloat(0xff800000u), uintBitsToFloat(0xffc00000u));
|
|
}
|
|
|