mirror of
https://github.com/rt64/rt64.git
synced 2025-04-25 03:02:33 +00:00
Co-authored-by: Isaac Marovitz <isaacryu@icloud.com> Co-authored-by: tanmaysachan <tnmysachan@gmail.com> Co-authored-by: Dario <dariosamo@gmail.com>
7 lines
211 B
HLSL
7 lines
211 B
HLSL
|
|
[[vk::constant_id(0)]] const uint useRed = 0;
|
|
|
|
float4 PSMain() : SV_TARGET {
|
|
return useRed ? float4(1.0, 0.0, 0.0, 1.0) // Red if true
|
|
: float4(0.0, 1.0, 0.0, 1.0); // Green if false
|
|
} |