Browse Source

r300c: Fix vertex data setup for named buffer objects with unaligned offset

Candidate for 7.8 branch

Signed-off-by: Maciej Cencora <m.cencora@gmail.com>
tags/mesa-7.9-rc1
Maciej Cencora 15 years ago
parent
commit
452a7d5a9d
1 changed files with 1 additions and 2 deletions
  1. 1
    2
      src/mesa/drivers/dri/r300/r300_draw.c

+ 1
- 2
src/mesa/drivers/dri/r300/r300_draw.c View File

@@ -523,8 +523,7 @@ static void r300AllocDmaRegions(GLcontext *ctx, const struct gl_client_array *in
r300ConvertAttrib(ctx, count, input[i], &vbuf->attribs[index]);
} else {
if (input[i]->BufferObj->Name) {
if (stride % 4 != 0) {
assert(((intptr_t) input[i]->Ptr) % input[i]->StrideB == 0);
if (stride % 4 != 0 || (intptr_t)input[i]->Ptr % 4 != 0) {
r300AlignDataToDword(ctx, input[i], count, &vbuf->attribs[index]);
vbuf->attribs[index].is_named_bo = GL_FALSE;
} else {

Loading…
Cancel
Save