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>
10 lines
272 B
Plaintext
10 lines
272 B
Plaintext
uniform half2 a;
|
|
uniform half4 b;
|
|
void main() {
|
|
sk_FragColor.x = half(packHalf2x16(a));
|
|
sk_FragColor.x = half(packUnorm2x16(a));
|
|
sk_FragColor.x = half(packSnorm2x16(a));
|
|
sk_FragColor.x = half(packUnorm4x8(b));
|
|
sk_FragColor.x = half(packSnorm4x8(b));
|
|
}
|