Mesa (master): i965: Fix value of _3DPRIM_TRIFAN_NOSTIPPLE.

Kenneth Graunke kwg at kemper.freedesktop.org
Wed Sep 9 01:28:02 UTC 2015


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

Author: Kenneth Graunke <kenneth at whitecape.org>
Date:   Fri Jul 24 21:01:43 2015 -0700

i965: Fix value of _3DPRIM_TRIFAN_NOSTIPPLE.

TRIFAN_NOSTIPPLE has always been 0x16 - 0x15 is marked "Reserved" on all
platforms.  See the 965 PRM, Volume 2, Table 3-1, "3D Primitive Topology
Type Encoding" for a list.

We don't currently use this, and I don't expect we will, but we may as
well not leave the bogus value around.

Signed-off-by: Kenneth Graunke <kenneth at whitecape.org>
Reviewed-by: Chris Forbes <chrisf at ijw.co.nz>

---

 src/mesa/drivers/dri/i965/brw_defines.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/mesa/drivers/dri/i965/brw_defines.h b/src/mesa/drivers/dri/i965/brw_defines.h
index 0f7feb3..411a97d 100644
--- a/src/mesa/drivers/dri/i965/brw_defines.h
+++ b/src/mesa/drivers/dri/i965/brw_defines.h
@@ -77,7 +77,7 @@
 #define _3DPRIM_LINESTRIP_CONT    0x12
 #define _3DPRIM_LINESTRIP_BF      0x13
 #define _3DPRIM_LINESTRIP_CONT_BF 0x14
-#define _3DPRIM_TRIFAN_NOSTIPPLE  0x15
+#define _3DPRIM_TRIFAN_NOSTIPPLE  0x16
 
 /* We use this offset to be able to pass native primitive types in struct
  * _mesa_prim::mode.  Native primitive types are BRW_PRIM_OFFSET +




More information about the mesa-commit mailing list