From 567c32b55cfebfdca07743caf9976af21e14b5de Mon Sep 17 00:00:00 2001 From: Chia-I Wu Date: Mon, 25 Sep 2023 09:54:11 -0700 Subject: radv, drirc: rename radv_require_{etc2,astc} Rename them to vk_require_{etc2,astc}. Signed-off-by: Chia-I Wu Reviewed-by: Lionel Landwerlin Part-of: --- src/util/driconf.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/util') diff --git a/src/util/driconf.h b/src/util/driconf.h index 1a2e6840271..6c589bbe9f1 100644 --- a/src/util/driconf.h +++ b/src/util/driconf.h @@ -328,6 +328,14 @@ DRI_CONF_OPT_B(intel_enable_wa_14018912822, def, \ "Intel workaround for using zero blend constants") +#define DRI_CONF_VK_REQUIRE_ETC2(def) \ + DRI_CONF_OPT_B(vk_require_etc2, def, \ + "Implement emulated ETC2 on HW that does not support it") + +#define DRI_CONF_VK_REQUIRE_ASTC(def) \ + DRI_CONF_OPT_B(vk_require_astc, def, \ + "Implement emulated ASTC on HW that does not support it") + /** * \brief Image quality-related options */ @@ -637,14 +645,6 @@ DRI_CONF_OPT_B(radv_disable_dcc, def, \ "Disable DCC for color images") -#define DRI_CONF_RADV_REQUIRE_ETC2(def) \ - DRI_CONF_OPT_B(radv_require_etc2, def, \ - "Implement emulated ETC2 on HW that does not support it") - -#define DRI_CONF_RADV_REQUIRE_ASTC(def) \ - DRI_CONF_OPT_B(radv_require_astc, def, \ - "Implement emulated ASTC on HW that does not support it") - #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") -- cgit v1.2.3