7f56b41fc0
Boolean scalar-swizzling is currently not working. Change-Id: Icd965e4b64a12311d098168f65622110d5fb3437 Bug: skia:12195 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/427038 Commit-Queue: John Stiles <johnstiles@google.com> Commit-Queue: Ethan Nicholas <ethannicholas@google.com> Auto-Submit: John Stiles <johnstiles@google.com> Reviewed-by: Ethan Nicholas <ethannicholas@google.com>
11 lines
197 B
Plaintext
11 lines
197 B
Plaintext
uniform half unknownInput; // 1
|
|
|
|
half4 main(float2 coords) {
|
|
half4 h4 = unknownInput.xxxx;
|
|
h4 = unknownInput.xx01;
|
|
h4 = unknownInput.0x10;
|
|
h4 = unknownInput.0x0x;
|
|
|
|
return h4;
|
|
}
|