Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
skia
/
cb15b7cf77a646e15890ac7dd9c91de29f2ed96a
/
.
/
resources
/
sksl
/
errors
/
PrecisionQualifiersDisallowed.sksl
blob: ee1f7ed15c958b689ec602686c6856ecb6d9283e [
file
] [
log
] [
blame
]
// Precision qualifiers are only allowed in a Runtime Effect.
void
h
()
{
highp
int
x
;
}
void
m
()
{
mediump
int
x
;
}
void
l
()
{
lowp
int
x
;
}