asahi: Add "hacks for dEQP" flag
authorAlyssa Rosenzweig <alyssa@rosenzweig.io>
Mon, 31 May 2021 20:10:02 +0000 (16:10 -0400)
committerMarge Bot <eric+marge@anholt.net>
Tue, 1 Jun 2021 01:31:02 +0000 (01:31 +0000)
Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11086>

src/asahi/lib/agx_device.h
src/gallium/drivers/asahi/agx_pipe.c

index 8a97391..79fbfe8 100644 (file)
@@ -34,6 +34,7 @@
 
 enum agx_dbg {
    AGX_DBG_TRACE = BITFIELD_BIT(0),
+   AGX_DBG_DEQP  = BITFIELD_BIT(1),
 };
 
 struct agx_device {
index 17dd911..da80a98 100644 (file)
@@ -47,6 +47,7 @@
 
 static const struct debug_named_value agx_debug_options[] = {
    {"trace",     AGX_DBG_TRACE,    "Trace the command stream"},
+   {"deqp",      AGX_DBG_DEQP,     "Hacks for dEQP"},
    DEBUG_NAMED_VALUE_END
 };