mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-27 21:20:12 +01:00
radv: Fix assert that is too strict.
The added assert fails on MSAA images if we disable FMASK ....
Reordered things.
Fixes: c6aadbae71 "radv: Don't use both DCC and CMASK for single sample images."
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/3385
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6232>
This commit is contained in:
parent
f7e7cf637e
commit
ff4f6202be
1 changed files with 2 additions and 2 deletions
|
|
@ -1233,13 +1233,13 @@ static void
|
|||
radv_image_alloc_single_sample_cmask(const struct radv_image *image,
|
||||
struct radeon_surf *surf)
|
||||
{
|
||||
assert(image->info.storage_samples == 1 || surf->cmask_offset);
|
||||
|
||||
if (!surf->cmask_size || surf->cmask_offset || surf->bpe > 8 ||
|
||||
image->info.levels > 1 || image->info.depth > 1 ||
|
||||
radv_image_has_dcc(image) || !radv_image_use_fast_clear_for_image(image))
|
||||
return;
|
||||
|
||||
assert(image->info.storage_samples == 1);
|
||||
|
||||
surf->cmask_offset = align64(surf->total_size, surf->cmask_alignment);
|
||||
surf->total_size = surf->cmask_offset + surf->cmask_size;
|
||||
surf->alignment = MAX2(surf->alignment, surf->cmask_alignment);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue