Multiply the dw value by 4 in order to map the complete buffer. Signed-off-by: Niels Ole Salscheider <niels_...@salscheider-online.de> --- src/gallium/drivers/r600/compute_memory_pool.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/gallium/drivers/r600/compute_memory_pool.c b/src/gallium/drivers/r600/compute_memory_pool.c index 90d5358..2f0d4c8 100644 --- a/src/gallium/drivers/r600/compute_memory_pool.c +++ b/src/gallium/drivers/r600/compute_memory_pool.c @@ -449,7 +449,7 @@ void compute_memory_transfer( if (device_to_host) { map = pipe->transfer_map(pipe, gart, 0, PIPE_TRANSFER_READ, - &(struct pipe_box) { .width = aligned_size, + &(struct pipe_box) { .width = aligned_size * 4, .height = 1, .depth = 1 }, &xfer); assert(xfer); assert(map); @@ -457,7 +457,7 @@ void compute_memory_transfer( pipe->transfer_unmap(pipe, xfer); } else { map = pipe->transfer_map(pipe, gart, 0, PIPE_TRANSFER_WRITE, - &(struct pipe_box) { .width = aligned_size, + &(struct pipe_box) { .width = aligned_size * 4, .height = 1, .depth = 1 }, &xfer); assert(xfer); assert(map); -- 1.9.0 _______________________________________________ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev