xref
: /
external
/
skia
/
tests
/
sksl
/
workarounds
/
FractNegativeStandaloneSettings.glsl
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
2
out vec4 sk_FragColor;
3
void main() {
4
float x = -42.0;
5
sk_FragColor.x
= fract(x);
6
}
7