mirror of
https://github.com/libretro/RetroArch
synced 2025-02-09 09:39:56 +00:00
14 lines
209 B
Plaintext
14 lines
209 B
Plaintext
#version 450
|
|
|
|
layout(constant_id = 0) const uint s = 10u;
|
|
const bool _13 = (s > 20u);
|
|
const uint _16 = _13 ? 30u : 50u;
|
|
|
|
layout(location = 0) out float FragColor;
|
|
|
|
void main()
|
|
{
|
|
FragColor = float(_16);
|
|
}
|
|
|