diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2007-03-18 20:54:20 +0000 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2007-03-18 20:54:20 +0000 |
commit | 834e151b24b783ecd888c1b9cb8b93cbb890c84c (patch) | |
tree | 26a78cbdc87ce097b3ad4c78305bb74fa6384c64 | |
parent | 5b206c1cd4741224c8b03deac12c51dbf6acc8b1 (diff) |
fix modes4/modes5 mixup
-rw-r--r-- | src/mesa/drivers/dri/i915tex/i915_vtbl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i915tex/i915_vtbl.c b/src/mesa/drivers/dri/i915tex/i915_vtbl.c index b73b3b1e7f..08d649aad5 100644 --- a/src/mesa/drivers/dri/i915tex/i915_vtbl.c +++ b/src/mesa/drivers/dri/i915tex/i915_vtbl.c @@ -96,9 +96,9 @@ static GLuint i915_debug_packet(const GLuint *stream) case 0xb: return debug(stream, "3DSTATE_INDEPENDENT_ALPHA_BLEND", 1); case 0xc: - return debug(stream, "3DSTATE_MODES4", 1); - case 0xd: return debug(stream, "3DSTATE_MODES5", 1); + case 0xd: + return debug(stream, "3DSTATE_MODES4", 1); case 0x15: return debug(stream, "3DSTATE_FOG_COLOR", 1); case 0x16: |