r6xx/r7xx: rework aos setup

In theory this should fix the stride = 0 case,
but I can't seem to reproduce that anymore
with mesa master.
This commit is contained in:
Alex Deucher 2009-07-01 14:41:57 -04:00
parent 65cdf9c561
commit 8bda0f1f4f
1 changed files with 4 additions and 4 deletions

View File

@ -309,7 +309,7 @@ void r700SetupVTXConstants(GLcontext * ctx,
unsigned int uSQ_VTX_CONSTANT_WORD6_0 = 0;
uSQ_VTX_CONSTANT_WORD0_0 = paos->offset;
uSQ_VTX_CONSTANT_WORD1_0 = count * stride - 1;
uSQ_VTX_CONSTANT_WORD1_0 = count * (size * 4) - 1;
uSQ_VTX_CONSTANT_WORD2_0 |= 0 << BASE_ADDRESS_HI_shift /* TODO */
|stride << SQ_VTX_CONSTANT_WORD2_0__STRIDE_shift
@ -385,9 +385,9 @@ int r700SetupStreams(GLcontext * ctx)
r700SetupVTXConstants(ctx,
i,
(void*)(&context->radeon.tcl.aos[i]),
(unsigned int)vb->AttribPtr[i]->size,
(unsigned int)(vb->AttribPtr[i]->size * 4),
(unsigned int)vb->Count);
(unsigned int)context->radeon.tcl.aos[i].components,
(unsigned int)context->radeon.tcl.aos[i].stride * 4,
(unsigned int)context->radeon.tcl.aos[i].count);
context->radeon.tcl.aos_count++;
}