From 1b24a3e9e93219d86acb5cd72697976371fa72a2 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Mon, 31 May 2021 16:10:02 -0400 Subject: [PATCH] asahi: Add "hacks for dEQP" flag Signed-off-by: Alyssa Rosenzweig Part-of: --- src/asahi/lib/agx_device.h | 1 + src/gallium/drivers/asahi/agx_pipe.c | 1 + 2 files changed, 2 insertions(+) diff --git a/src/asahi/lib/agx_device.h b/src/asahi/lib/agx_device.h index 8a97391..79fbfe8 100644 --- a/src/asahi/lib/agx_device.h +++ b/src/asahi/lib/agx_device.h @@ -34,6 +34,7 @@ enum agx_dbg { AGX_DBG_TRACE = BITFIELD_BIT(0), + AGX_DBG_DEQP = BITFIELD_BIT(1), }; struct agx_device { diff --git a/src/gallium/drivers/asahi/agx_pipe.c b/src/gallium/drivers/asahi/agx_pipe.c index 17dd911..da80a98 100644 --- a/src/gallium/drivers/asahi/agx_pipe.c +++ b/src/gallium/drivers/asahi/agx_pipe.c @@ -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 }; -- 2.7.4