skia2/tests/sksl/intrinsics/IntBitsToFloat.glsl
John Stiles 469fb3c619 Rename variables named input in test files.
`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>
2021-09-30 16:39:21 +00:00

12 lines
509 B
GLSL

out vec4 sk_FragColor;
uniform float testInput;
uniform mat2 testMatrix2x2;
uniform vec4 colorGreen;
uniform vec4 colorRed;
vec4 main() {
vec4 inputVal = vec4(testMatrix2x2) * vec4(1.0, 1.0, -1.0, -1.0);
ivec4 expectedB = ivec4(1065353216, 1073741824, -1069547520, -1065353216);
return ((inputVal.x == intBitsToFloat(expectedB.x) && inputVal.xy == intBitsToFloat(expectedB.xy)) && inputVal.xyz == intBitsToFloat(expectedB.xyz)) && inputVal == intBitsToFloat(expectedB) ? colorGreen : colorRed;
}