radv: remove old workaround for HTILE layers with F1 2021

Turns out this was likely a vkd3d-proton issue because it can no
longer be reproduced since it switched to dynamic rendering by default.
AMDGPU-PRO was also affected by the same issue at that time.

According to Hans-Kristian, some bugs related to that have also been
fixed at the same time.

Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17296>
This commit is contained in:
Samuel Pitoiset 2022-06-29 14:41:34 +02:00 committed by Marge Bot
parent 25d5ef0450
commit b11158cc8b
5 changed files with 0 additions and 16 deletions

View File

@ -126,10 +126,6 @@ Application bugs worked around in this file:
<option name="radv_invariant_geom" value="true" />
</application>
<application name="F1 2021" application_name_match="F1_2021_dx12.exe">
<option name="radv_disable_htile_layers" value="true" />
</application>
<application name="Fable Anniversary" application_name_match="Fable Anniversary.exe">
<option name="radv_disable_dcc" value="true" />
</application>

View File

@ -973,7 +973,6 @@ static const driOptionDescription radv_dri_options[] = {
DRI_CONF_RADV_DISABLE_DCC(false)
DRI_CONF_RADV_REPORT_APU_AS_DGPU(false)
DRI_CONF_RADV_REQUIRE_ETC2(false)
DRI_CONF_RADV_DISABLE_HTILE_LAYERS(false)
DRI_CONF_RADV_DISABLE_ANISO_SINGLE_LEVEL(false)
DRI_CONF_RADV_DISABLE_SINKING_LOAD_INPUT_FS(false)
DRI_CONF_SECTION_END
@ -1022,9 +1021,6 @@ radv_init_dri_options(struct radv_instance *instance)
instance->report_apu_as_dgpu =
driQueryOptionb(&instance->dri_options, "radv_report_apu_as_dgpu");
instance->disable_htile_layers =
driQueryOptionb(&instance->dri_options, "radv_disable_htile_layers");
instance->disable_aniso_single_level =
driQueryOptionb(&instance->dri_options, "radv_disable_aniso_single_level");

View File

@ -362,9 +362,6 @@ radv_use_htile_for_image(const struct radv_device *device, const struct radv_ima
!device->attachment_vrs_enabled)
return false;
if (device->instance->disable_htile_layers && image->info.array_size > 1)
return false;
return (image->info.levels == 1 || use_htile_for_mips) && !image->shareable;
}

View File

@ -357,7 +357,6 @@ struct radv_instance {
bool disable_shrink_image_store;
bool absolute_depth_bias;
bool report_apu_as_dgpu;
bool disable_htile_layers;
bool disable_aniso_single_level;
bool zero_vram;
bool disable_sinking_load_input_fs;

View File

@ -574,10 +574,6 @@
DRI_CONF_OPT_B(radv_require_etc2, def, \
"Implement emulated ETC2 on HW that does not support it")
#define DRI_CONF_RADV_DISABLE_HTILE_LAYERS(def) \
DRI_CONF_OPT_B(radv_disable_htile_layers, def, \
"Disable HTILE for layered depth/stencil formats")
#define DRI_CONF_RADV_DISABLE_ANISO_SINGLE_LEVEL(def) \
DRI_CONF_OPT_B(radv_disable_aniso_single_level, def, \
"Disable anisotropic filtering for single level images")