mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-19 14:40:30 +01:00
r200: Fix missing offset from elt buffer pointer.
Signed-off-by: Pauli Nieminen <suokkos@gmail.com>
This commit is contained in:
parent
bbf2b5c4ff
commit
ae290fd93e
1 changed files with 1 additions and 1 deletions
|
|
@ -146,7 +146,7 @@ static GLushort *r200AllocElts( r200ContextPtr rmesa, GLuint nr )
|
|||
rmesa->tcl.elt_used + nr*2 < R200_ELT_BUF_SZ) {
|
||||
|
||||
GLushort *dest = (GLushort *)(rmesa->radeon.tcl.elt_dma_bo->ptr +
|
||||
rmesa->tcl.elt_used);
|
||||
rmesa->radeon.tcl.elt_dma_offset + rmesa->tcl.elt_used);
|
||||
|
||||
rmesa->tcl.elt_used += nr*2;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue