From ba11a30bf7e6618dadffe4bff04b558bfe8b25da Mon Sep 17 00:00:00 2001 From: Emma Anholt Date: Sat, 3 Jul 2021 21:58:57 -0700 Subject: [PATCH] i915g: Fix dumping of 3DSTATE_BACKFACE_STENCIL_OPS. Its length was overly long and it meant we skipped the name of 3DSTATE_BACKFACE_STENCIL_MASKS. Part-of: --- src/gallium/drivers/i915/i915_debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/i915/i915_debug.c b/src/gallium/drivers/i915/i915_debug.c index 10cc10aec86..11ba84076b6 100644 --- a/src/gallium/drivers/i915/i915_debug.c +++ b/src/gallium/drivers/i915/i915_debug.c @@ -777,7 +777,7 @@ i915_debug_packet(struct debug_stream *stream) case 0x7: return debug(stream, "3DSTATE_RASTERIZATION_RULES", 1); case 0x8: - return debug(stream, "3DSTATE_BACKFACE_STENCIL_OPS", 2); + return debug(stream, "3DSTATE_BACKFACE_STENCIL_OPS", 1); case 0x9: return debug(stream, "3DSTATE_BACKFACE_STENCIL_MASKS", 1); case 0xb: