Sign in
skia
/
skia
/
ed92d84ffd3aeb34c92e25ecb082f089703fc0ec
/
.
/
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
);
}
}