skia2/resources/sksl/intrinsics/Unpack.sksl
Brian Osman 8c595fed7c Change sksl tests to avoid SPIR-V validation errors
'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>
2021-03-16 13:39:53 +00:00

9 lines
268 B
Plaintext

uniform uint a;
void main() {
sk_FragColor.xy = half2(unpackHalf2x16(a));
sk_FragColor.xy = half2(unpackUnorm2x16(a));
sk_FragColor.xy = half2(unpackSnorm2x16(a));
sk_FragColor = half4(unpackUnorm4x8(a));
sk_FragColor = half4(unpackSnorm4x8(a));
}