summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Engestrom <eric@engestrom.ch>2020-08-06 16:05:51 +0200
committerMarge Bot <eric+marge@anholt.net>2020-08-08 14:26:08 +0000
commit7fbadfc385c359fd291d58a75fbe6ce3fdc91747 (patch)
tree6b95c890b262366b5986aa8ebcfb8e9df8e436fb
parent800816d70be50b0b04669a016288121e1b11f0c8 (diff)
driconf: fix force_gl_vendor description
The option is not a toggle to "allow GPU vendor to be overridden", it *is* the override. Fixes: dca119f12c291d7665d7 ("mesa/gallium: add dric option to allow overriding GL vendor string") Signed-off-by: Eric Engestrom <eric@engestrom.ch> Reviewed-by: Marek Olšák <marek.olsak@amd.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6207>
-rw-r--r--src/util/driconf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/driconf.h b/src/util/driconf.h
index 909768c1c32..c922e94b9f9 100644
--- a/src/util/driconf.h
+++ b/src/util/driconf.h
@@ -214,7 +214,7 @@ DRI_CONF_OPT_END
#define DRI_CONF_FORCE_GL_VENDOR(def) \
DRI_CONF_OPT_BEGIN(force_gl_vendor, string, def) \
- DRI_CONF_DESC("Allow GPU vendor to be overridden.") \
+ DRI_CONF_DESC("Override GPU vendor string.") \
DRI_CONF_OPT_END
#define DRI_CONF_FORCE_COMPAT_PROFILE(def) \