Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
skia
/
bf282c05e58c222f19ea2eb95acc61ea78565756
/
.
/
tests
/
sksl
/
shared
/
Caps.sksl
blob: 10c9a13871212ace3eaf8a797f93526a2ec2d8b6 [
file
] [
log
] [
blame
]
void
main
()
{
int
x
=
0
;
int
y
=
0
;
int
z
=
0
;
if
(
sk_Caps
.
externalTextureSupport
)
x
=
1
;
if
(
sk_Caps
.
fbFetchSupport
)
y
=
1
;
if
(
sk_Caps
.
canUseAnyFunctionInShader
)
z
=
1
;
sk_FragColor
.
rgb
=
half3
(
x
,
y
,
z
);
}