mirror of
https://github.com/libretro/RetroArch
synced 2025-02-09 09:39:56 +00:00
24 lines
411 B
GLSL
24 lines
411 B
GLSL
|
#version 310 es
|
||
|
precision mediump float;
|
||
|
precision highp int;
|
||
|
|
||
|
const float _16[4] = float[](1.0, 4.0, 3.0, 2.0);
|
||
|
|
||
|
struct Foo
|
||
|
{
|
||
|
float a;
|
||
|
float b;
|
||
|
};
|
||
|
|
||
|
const Foo _28[2] = Foo[](Foo(10.0, 20.0), Foo(30.0, 40.0));
|
||
|
|
||
|
layout(location = 0) out vec4 FragColor;
|
||
|
layout(location = 0) flat in mediump int line;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
FragColor = vec4(_16[line]);
|
||
|
FragColor += vec4(_28[line].a * _28[1 - line].a);
|
||
|
}
|
||
|
|