Sign in
skia
/
skia
/
e8ab6e172d07e8d0f04e1fdf17f1202a4547359a
/
.
/
resources
/
sksl
/
shared
/
SwitchDefaultOnly.sksl
blob: e531cb2dbf8f627181a82908e833982b4d709172 [
file
] [
log
] [
blame
]
/*#pragma settings RewriteSwitchStatements*/
uniform half4 colorGreen
,
colorRed
;
half4 main
(
float2 coords
)
{
switch
(
int
(
colorGreen
.
g
))
{
default
:
return
colorGreen
;
}
}