r600g: Fix buffer offsets
Signed-off-by: Jakob Bornecrantz <wallbraker@gmail.com>
This commit is contained in:
committed by
Jerome Glisse
parent
b8fb1d75ce
commit
9abfc5ef60
@@ -151,7 +151,7 @@ static void *r600_buffer_transfer_map(struct pipe_context *pipe,
|
||||
int write = 0;
|
||||
|
||||
if (rbuffer->pb) {
|
||||
return pb_map(rbuffer->pb, transfer->usage) + transfer->box.x;
|
||||
return (uint8_t*)pb_map(rbuffer->pb, transfer->usage) + transfer->box.x;
|
||||
}
|
||||
if (transfer->usage & PIPE_TRANSFER_DONTBLOCK) {
|
||||
/* FIXME */
|
||||
@@ -162,7 +162,7 @@ static void *r600_buffer_transfer_map(struct pipe_context *pipe,
|
||||
if (radeon_bo_map(rscreen->rw, rbuffer->bo)) {
|
||||
return NULL;
|
||||
}
|
||||
return rbuffer->bo->data + transfer->box.x;
|
||||
return (uint8_t*)rbuffer->bo->data + transfer->box.x;
|
||||
}
|
||||
|
||||
static void r600_buffer_transfer_unmap(struct pipe_context *pipe,
|
||||
|
||||
Reference in New Issue
Block a user