diff --git a/src/gallium/drivers/panfrost/pan_screen.c b/src/gallium/drivers/panfrost/pan_screen.c index 9b17a502425..e6ecc69876d 100644 --- a/src/gallium/drivers/panfrost/pan_screen.c +++ b/src/gallium/drivers/panfrost/pan_screen.c @@ -65,7 +65,6 @@ static const struct debug_named_value panfrost_debug_options[] = { {"noafbc", PAN_DBG_NO_AFBC, "Disable AFBC support"}, {"nocrc", PAN_DBG_NO_CRC, "Disable transaction elimination"}, {"msaa16", PAN_DBG_MSAA16, "Enable MSAA 8x and 16x support"}, - {"indirect", PAN_DBG_INDIRECT, "Use experimental compute kernel for indirect draws"}, {"linear", PAN_DBG_LINEAR, "Force linear textures"}, {"nocache", PAN_DBG_NO_CACHE, "Disable BO cache"}, {"dump", PAN_DBG_DUMP, "Dump all graphics memory"}, diff --git a/src/panfrost/lib/pan_util.h b/src/panfrost/lib/pan_util.h index c6d69af8671..e15266b3721 100644 --- a/src/panfrost/lib/pan_util.h +++ b/src/panfrost/lib/pan_util.h @@ -43,7 +43,7 @@ #define PAN_DBG_GL3 0x0100 #define PAN_DBG_NO_AFBC 0x0200 #define PAN_DBG_MSAA16 0x0400 -#define PAN_DBG_INDIRECT 0x0800 +/* 0x800 unused */ #define PAN_DBG_LINEAR 0x1000 #define PAN_DBG_NO_CACHE 0x2000 #define PAN_DBG_DUMP 0x4000