469fb3c619
`input` is a reserved word in GLSL. http://screen/85m4iRwvJRadKbV Change-Id: Iffc0a47d916a2419a27767902c839e09bfa7fe26 Bug: skia:11115 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/454736 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>
15 lines
593 B
Plaintext
15 lines
593 B
Plaintext
uniform half4 inputVal, expected;
|
|
uniform half4 colorGreen, colorRed;
|
|
|
|
half4 main(float2 coords) {
|
|
const half4 constVal = half4(1, 2, 4, 8);
|
|
return (log2(inputVal.x) == expected.x &&
|
|
log2(inputVal.xy) == expected.xy &&
|
|
log2(inputVal.xyz) == expected.xyz &&
|
|
log2(inputVal.xyzw) == expected.xyzw &&
|
|
log2(constVal.x) == expected.x &&
|
|
log2(constVal.xy) == expected.xy &&
|
|
log2(constVal.xyz) == expected.xyz &&
|
|
log2(constVal.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
|
}
|