r600: remove obsolete option for experimental NIR support

NIR shaders is the default for the r600 driver now. There is no point in
an option to enable this as experimental support.

Signed-off-by: Michael Tretter <m.tretter@pengutronix.de>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/39071>
This commit is contained in:
Michael Tretter 2025-12-22 15:11:01 +01:00 committed by Marge Bot
parent cbedced5e8
commit 64a2081c7f
2 changed files with 1 additions and 2 deletions

View file

@ -670,7 +670,6 @@ void r600_common_context_cleanup(struct r600_common_context *rctx)
static const struct debug_named_value common_debug_options[] = {
/* logging */
{ "tex", DBG_TEX, "Print texture info" },
{ "nir", DBG_NIR, "Enable experimental NIR shaders" },
{ "compute", DBG_COMPUTE, "Print compute info" },
{ "vm", DBG_VM, "Print virtual addresses when creating resources" },
{ "info", DBG_INFO, "Print driver information" },

View file

@ -57,7 +57,7 @@ struct u_log_context;
#define DBG_ALL_SHADERS (DBG_FS - 1)
#define DBG_FS (1 << 6) /* fetch shader */
#define DBG_TEX (1 << 7)
#define DBG_NIR (1 << 8)
/* gap */
#define DBG_COMPUTE (1 << 9)
/* gap */
#define DBG_VM (1 << 11)