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