Module: Mesa Branch: staging/22.1 Commit: 391160218598f5ee18285d0008537bebe731b962 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=391160218598f5ee18285d0008537bebe731b962
Author: Charmaine Lee <[email protected]> Date: Wed Mar 9 18:20:46 2022 -0800 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 <[email protected]> (cherry picked from commit c63346eb69c2ae3f5626bd2154854be6a2948fab) Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16564> --- 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 <stdio.h> /* 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;
