From: Dave Airlie Date: Mon, 29 Nov 2010 01:38:24 +0000 (+1000) Subject: r600g: it looks like r600 can handle dword offsets in the indices. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a7cb673aa1b1184ac58d77ff400d1d70d316dc06;p=mesa.git 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) --- diff --git a/src/gallium/drivers/r600/r600_translate.c b/src/gallium/drivers/r600/r600_translate.c index 9a07cf2073f..2e082f1cff0 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; }