panfrost: Remove PAN_MESA_DEBUG=deqp

Now unused.

Signed-off-by: Alyssa Rosenzweig <alyssa@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20707>
This commit is contained in:
Alyssa Rosenzweig
2023-01-13 20:57:50 -05:00
committed by Marge Bot
parent 46051049a6
commit ea03d0652d
2 changed files with 2 additions and 3 deletions

View File

@@ -58,7 +58,6 @@
static const struct debug_named_value panfrost_debug_options[] = {
{"perf", PAN_DBG_PERF, "Enable performance warnings"},
{"trace", PAN_DBG_TRACE, "Trace the command stream"},
{"deqp", PAN_DBG_DEQP, "Hacks for dEQP"},
{"dirty", PAN_DBG_DIRTY, "Always re-emit all state"},
{"sync", PAN_DBG_SYNC, "Wait for each job's completion and abort on GPU faults"},
{"nofp16", PAN_DBG_NOFP16, "Disable 16-bit support"},
@@ -101,7 +100,7 @@ panfrost_get_param(struct pipe_screen *screen, enum pipe_cap param)
struct panfrost_device *dev = pan_device(screen);
/* Our GL 3.x implementation is WIP */
bool is_gl3 = dev->debug & (PAN_DBG_GL3 | PAN_DBG_DEQP);
bool is_gl3 = dev->debug & PAN_DBG_GL3;
/* Native MRT is introduced with v5 */
bool has_mrt = (dev->arch >= 5);

View File

@@ -34,7 +34,7 @@
#define PAN_DBG_PERF 0x0001
#define PAN_DBG_TRACE 0x0002
#define PAN_DBG_DEQP 0x0004
/* 0x4 unused */
#define PAN_DBG_DIRTY 0x0008
#define PAN_DBG_SYNC 0x0010
/* 0x20 unused */