Mesa (master): i965: fix 3DPRIMITIVE batch decode of the vertex count field .

Eric Anholt anholt at kemper.freedesktop.org
Fri Mar 6 07:44:12 UTC 2009


Module: Mesa
Branch: master
Commit: d0ec7c109c4d78ea0a02b595584da875e62d2773
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=d0ec7c109c4d78ea0a02b595584da875e62d2773

Author: Eric Anholt <eric at anholt.net>
Date:   Thu Mar  5 18:50:29 2009 -0800

i965: fix 3DPRIMITIVE batch decode of the vertex count field.

---

 src/mesa/drivers/dri/intel/intel_decode.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/mesa/drivers/dri/intel/intel_decode.c b/src/mesa/drivers/dri/intel/intel_decode.c
index 136221c..f2e2e61 100644
--- a/src/mesa/drivers/dri/intel/intel_decode.c
+++ b/src/mesa/drivers/dri/intel/intel_decode.c
@@ -1595,7 +1595,7 @@ decode_3d_965(uint32_t *data, int count, uint32_t hw_offset, int *failures)
 		  "3DPRIMITIVE: %s %s\n",
 		  get_965_prim_type(data[0]),
 		  (data[0] & (1 << 15)) ? "random" : "sequential");
-	instr_out(data, hw_offset, 1, "primitive count\n");
+	instr_out(data, hw_offset, 1, "vertex count\n");
 	instr_out(data, hw_offset, 2, "start vertex\n");
 	instr_out(data, hw_offset, 3, "instance count\n");
 	instr_out(data, hw_offset, 4, "start instance\n");




More information about the mesa-commit mailing list