diff options
author | Jakob Bornecrantz <[email protected]> | 2010-05-13 20:27:19 +0100 |
---|---|---|
committer | Jerome Glisse <[email protected]> | 2010-05-27 23:24:07 +0200 |
commit | 9abfc5ef60ba26505a333bdd0f17a83c90ce316a (patch) | |
tree | 882047ac39b59bd4520f7c05facc5b971d5f9e6b /src | |
parent | b8fb1d75ce95fe5d404b301ab31ca0c323967d14 (diff) |
r600g: Fix buffer offsets
Signed-off-by: Jakob Bornecrantz <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/r600/r600_buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/r600/r600_buffer.c b/src/gallium/drivers/r600/r600_buffer.c index 634a02b686e..fd94c605bb1 100644 --- a/src/gallium/drivers/r600/r600_buffer.c +++ b/src/gallium/drivers/r600/r600_buffer.c @@ -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, |