ecd7c2278f
The leftover tests in shared/ are not easily testable as Runtime Effects; they do things that ES2 doesn't support or use a feature not exposed directly by Runtime Effects. Change-Id: I7ebe170cf713c4a0d2dbef333c1fcbac2410c67f Bug: skia:11009 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/367059 Commit-Queue: John Stiles <johnstiles@google.com> Auto-Submit: John Stiles <johnstiles@google.com> Reviewed-by: Ethan Nicholas <ethannicholas@google.com>
12 lines
178 B
GLSL
12 lines
178 B
GLSL
|
|
out vec4 sk_FragColor;
|
|
uniform float unknownInput;
|
|
vec4 main() {
|
|
float r;
|
|
float g;
|
|
|
|
r = 1.0 - unknownInput;
|
|
g = unknownInput;
|
|
return vec4(r, g, 0.0, 1.0);
|
|
}
|