summaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorChia-I Wu <olvaffe@gmail.com>2023-09-25 09:54:11 -0700
committerMarge Bot <emma+marge@anholt.net>2023-10-14 02:36:39 +0000
commit567c32b55cfebfdca07743caf9976af21e14b5de (patch)
tree423187ab556098ce1ab70721ac3fb332b641a45d /src/util
parentcfdc57d120f82104415b68f367653b42744f24d6 (diff)
downloadmesa-567c32b55cfebfdca07743caf9976af21e14b5de.tar.gz
mesa-567c32b55cfebfdca07743caf9976af21e14b5de.tar.bz2
mesa-567c32b55cfebfdca07743caf9976af21e14b5de.zip
radv, drirc: rename radv_require_{etc2,astc}
Rename them to vk_require_{etc2,astc}. Signed-off-by: Chia-I Wu <olvaffe@gmail.com> Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25467>
Diffstat (limited to 'src/util')
-rw-r--r--src/util/driconf.h16
1 files changed, 8 insertions, 8 deletions
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")