drirc: rename hasvk only option

Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: José Roberto de Souza <jose.souza@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28632>
This commit is contained in:
Lionel Landwerlin 2024-04-08 16:17:08 +03:00 committed by Marge Bot
parent 73c31e9483
commit 0e5c44a609
2 changed files with 6 additions and 2 deletions

View file

@ -70,7 +70,7 @@ static const driOptionDescription anv_dri_options[] = {
DRI_CONF_ANV_ASSUME_FULL_SUBGROUPS(0)
DRI_CONF_ANV_SAMPLE_MASK_OUT_OPENGL_BEHAVIOUR(false)
DRI_CONF_NO_16BIT(false)
DRI_CONF_ANV_HASVK_OVERRIDE_API_VERSION(false)
DRI_CONF_HASVK_OVERRIDE_API_VERSION(false)
DRI_CONF_SECTION_END
DRI_CONF_SECTION_DEBUG

View file

@ -787,7 +787,11 @@
#define DRI_CONF_ANV_EXTERNAL_MEMORY_IMPLICIT_SYNC(def) \
DRI_CONF_OPT_B(anv_external_memory_implicit_sync, def, "Implicit sync on external BOs")
#define DRI_CONF_ANV_HASVK_OVERRIDE_API_VERSION(def) \
/**
* \brief HASVK specific configuration options
*/
#define DRI_CONF_HASVK_OVERRIDE_API_VERSION(def) \
DRI_CONF_OPT_B(hasvk_report_vk_1_3_version, def, \
"Override intel_hasvk API version")