diff options
author | Eric Anholt <[email protected]> | 2018-06-13 13:38:33 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2018-06-14 16:52:25 -0700 |
commit | d91e06a06572a4c4772b02dfc39dcbd283b490f9 (patch) | |
tree | 2373df6055831fe5b1ae1efecdcb23babef850a5 /src/broadcom/compiler | |
parent | 6784aa9870f688c0b4a2544b20fe223ec02365b1 (diff) |
v3d: Fix configuration setup of mixed f32 and f16 render targets.
Fixes dEQP-GLES3.functional.fragment_out.random.26 and 6 others.
Diffstat (limited to 'src/broadcom/compiler')
-rw-r--r-- | src/broadcom/compiler/nir_to_vir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/broadcom/compiler/nir_to_vir.c b/src/broadcom/compiler/nir_to_vir.c index 23b5975a334..51b4fd6848d 100644 --- a/src/broadcom/compiler/nir_to_vir.c +++ b/src/broadcom/compiler/nir_to_vir.c @@ -1000,7 +1000,7 @@ emit_frag_end(struct v3d_compile *c) struct qreg b = color[2]; struct qreg a = color[3]; - if (c->fs_key->f32_color_rb) { + if (c->fs_key->f32_color_rb & (1 << rt)) { conf |= TLB_TYPE_F32_COLOR; conf |= ((num_components - 1) << TLB_VEC_SIZE_MINUS_1_SHIFT); |