mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 07:08:04 +02:00
radv: Fix number of samples used for binning.
Used the wrong register ...
CC: <mesa-stable@lists.freedesktop.org>
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
(cherry picked from commit 760211b77c)
This commit is contained in:
parent
79a247b233
commit
3a8ac0b54f
1 changed files with 1 additions and 1 deletions
|
|
@ -2437,7 +2437,7 @@ radv_compute_bin_size(struct radv_pipeline *pipeline, const VkGraphicsPipelineCr
|
|||
pipeline->device->physical_device->rad_info.max_se);
|
||||
unsigned log_num_se = util_logbase2_ceil(pipeline->device->physical_device->rad_info.max_se);
|
||||
|
||||
unsigned total_samples = 1u << G_028BE0_MSAA_NUM_SAMPLES(pipeline->graphics.ms.pa_sc_mode_cntl_1);
|
||||
unsigned total_samples = 1u << G_028BE0_MSAA_NUM_SAMPLES(pipeline->graphics.ms.pa_sc_aa_config);
|
||||
unsigned ps_iter_samples = 1u << G_028804_PS_ITER_SAMPLES(pipeline->graphics.ms.db_eqaa);
|
||||
unsigned effective_samples = total_samples;
|
||||
unsigned color_bytes_per_pixel = 0;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue