Mesa (master): r600g: it looks like r600 can handle dword offsets in the indices.

Dave Airlie airlied at kemper.freedesktop.org
Mon Nov 29 01:39:04 UTC 2010


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

Author: Dave Airlie <airlied at redhat.com>
Date:   Mon Nov 29 11:38:24 2010 +1000

r600g: it looks like r600 can handle dword offsets in the indices.

Tested with piglit + ut2004 still seems to render okay (and it
definitely does this)

---

 src/gallium/drivers/r600/r600_translate.c |    7 -------
 1 files changed, 0 insertions(+), 7 deletions(-)

diff --git a/src/gallium/drivers/r600/r600_translate.c b/src/gallium/drivers/r600/r600_translate.c
index 9a07cf2..2e082f1 100644
--- a/src/gallium/drivers/r600/r600_translate.c
+++ b/src/gallium/drivers/r600/r600_translate.c
@@ -197,14 +197,7 @@ void r600_translate_index_buffer(struct r600_pipe_context *r600,
 		*index_size = 2;
 		*start = 0;
 		break;
-
 	case 2:
-		if (*start % 2 != 0) {
-			util_rebuild_ushort_elts(&r600->context, index_buffer, 0, *start, count);
-			*start = 0;
-		}
-		break;
-
 	case 4:
 		break;
 	}




More information about the mesa-commit mailing list