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: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11706>
This commit is contained in:
Emma Anholt 2021-07-03 21:58:57 -07:00 committed by Marge Bot
parent ee79b87c62
commit ba11a30bf7
1 changed files with 1 additions and 1 deletions

View File

@ -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: