8c595fed7c
'in' variables without locations aren't allowed. Use uniforms instead. Bug: skia:11738 Change-Id: Ic066106deb7409cff154b4be7cfb3e03a7025c7d Reviewed-on: https://skia-review.googlesource.com/c/skia/+/385000 Commit-Queue: Brian Osman <brianosman@google.com> Reviewed-by: John Stiles <johnstiles@google.com>
12 lines
199 B
GLSL
12 lines
199 B
GLSL
|
|
out vec4 sk_FragColor;
|
|
uniform float a;
|
|
uniform float b;
|
|
uniform float c;
|
|
uniform vec4 d;
|
|
uniform vec4 e;
|
|
void main() {
|
|
sk_FragColor.x = refract(a, b, c);
|
|
sk_FragColor = refract(d, e, c);
|
|
}
|