llvmpipe/fs: fix regression in sample mask handling from tgsi removal.
This got the bits the wrong way,
dEQP-VK.rasterization.frag_side_effects.color_at_beginning.sample_mask_after
Fixes: a63c2daf7a ("llvmpipe/fs: start using nir info in some places.")
Reviewed-by: Erik Faye-Lund <erik.faye-lund@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25396>
This commit is contained in:
parent
b1e851d66c
commit
3e6938696a
2 changed files with 1 additions and 2 deletions
|
|
@ -3782,7 +3782,7 @@ generate_variant(struct llvmpipe_context *lp,
|
|||
!key->blend.alpha_to_coverage &&
|
||||
!key->depth.enabled &&
|
||||
!nir->info.fs.uses_discard &&
|
||||
(nir->info.outputs_written & BITFIELD64_BIT(FRAG_RESULT_SAMPLE_MASK)) &&
|
||||
!(nir->info.outputs_written & BITFIELD64_BIT(FRAG_RESULT_SAMPLE_MASK)) &&
|
||||
!nir->info.fs.uses_fbfetch_output;
|
||||
|
||||
variant->opaque =
|
||||
|
|
|
|||
|
|
@ -1,3 +1,2 @@
|
|||
# New CTS failures in 1.3.6.3
|
||||
dEQP-VK.api.info.image_format_properties.2d.linear.g8_b8r8_2plane_420_unorm,Fail
|
||||
dEQP-VK.rasterization.frag_side_effects.color_at_beginning.sample_mask_after,Fail
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue