mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 21:50:12 +01:00
ac: remove 1 RB raster config for Iceland
Iceland always reports 2 RBs. Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
This commit is contained in:
parent
cb0f5cddcc
commit
e7b82a9978
1 changed files with 1 additions and 5 deletions
|
|
@ -565,7 +565,6 @@ ac_get_raster_config(struct radeon_info *info,
|
|||
uint32_t *raster_config_p,
|
||||
uint32_t *raster_config_1_p)
|
||||
{
|
||||
unsigned num_rb = MIN2(info->num_render_backends, 16);
|
||||
unsigned raster_config, raster_config_1;
|
||||
switch (info->family) {
|
||||
case CHIP_TAHITI:
|
||||
|
|
@ -615,10 +614,7 @@ ac_get_raster_config(struct radeon_info *info,
|
|||
raster_config_1 = 0x0000002a;
|
||||
break;
|
||||
case CHIP_ICELAND:
|
||||
if (num_rb == 1)
|
||||
raster_config = 0x00000000;
|
||||
else
|
||||
raster_config = 0x00000002;
|
||||
raster_config = 0x00000002;
|
||||
raster_config_1 = 0x00000000;
|
||||
break;
|
||||
case CHIP_CARRIZO:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue