Browse Source

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)
tags/android-x86-2.2
Dave Airlie 15 years ago
parent
commit
a7cb673aa1
1 changed files with 0 additions and 7 deletions
  1. 0
    7
      src/gallium/drivers/r600/r600_translate.c

+ 0
- 7
src/gallium/drivers/r600/r600_translate.c View File

@@ -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;
}

Loading…
Cancel
Save