From c63346eb69c2ae3f5626bd2154854be6a2948fab Mon Sep 17 00:00:00 2001 From: Charmaine Lee Date: Wed, 9 Mar 2022 18:20:46 -0800 Subject: [PATCH] gallium/util: Increase the debug_flush map depth to 64 Piglit tests fbo-generatemipmap-3d RGB9_E5 and fbo-generatemipmap-cubemap array RGB9_E5 hit assert when debug_flush is active. Increase the debug map depth to 64. Reviewed-by: Neha Bhende Part-of: --- src/gallium/auxiliary/util/u_debug_flush.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/auxiliary/util/u_debug_flush.c b/src/gallium/auxiliary/util/u_debug_flush.c index 4f3c98aec2f..591698b50e0 100644 --- a/src/gallium/auxiliary/util/u_debug_flush.c +++ b/src/gallium/auxiliary/util/u_debug_flush.c @@ -51,7 +51,7 @@ #include /* Future improvement: Use realloc instead? */ -#define DEBUG_FLUSH_MAP_DEPTH 32 +#define DEBUG_FLUSH_MAP_DEPTH 64 struct debug_map_item { struct debug_stack_frame *frame;