3679cd1151
Change-Id: I674d758c11071582e9fbedcda5596c540bfb5f71 Bug: skia:11054 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/342558 Commit-Queue: John Stiles <johnstiles@google.com> Reviewed-by: Brian Osman <brianosman@google.com>
7 lines
98 B
GLSL
7 lines
98 B
GLSL
|
|
out vec4 sk_FragColor;
|
|
in float a;
|
|
void main() {
|
|
sk_FragColor.x = float(isnan(a) ? 1 : 0);
|
|
}
|