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