Sign in
skia
/
skia
/
97be28c4cc05231fe6e70dc32662c24700e731cc
/
.
/
tests
/
sksl
/
runtime
/
SwitchDefaultOnly.stage
blob: 9ff0ff1fd61de9f67e7ad2a16d7ec917b475ff4d [
file
] [
log
] [
blame
]
uniform half4 colorGreen
;
uniform half4 colorRed
;
half4 main
(
float2 coords
)
{
switch
(
int
(
colorGreen
.
y
))
{
default
:
return
half4
(
colorGreen
);
}
}