Sign in
flutter
/
third_party
/
glslang
/
refs/heads/flutter-ce138e
/
.
/
Test
/
hlsl.ternary.simple.frag
blob: 4e498756a9f026aabee4c5626aaf976956e802d2 [
file
] [
edit
]
float4 main
(
int
a
,
int
b
,
float4 col0
,
float4 col1
)
:
SV_TARGET
{
return
a
<
b
?
col0
:
col1
;
}