diff options
author | Marek Olšák <[email protected]> | 2012-02-26 20:37:43 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-07-18 07:16:30 +0200 |
commit | 99c65bac341f808279a8a847158ace4f058aa72e (patch) | |
tree | 8ed3fe5a58c3511b0a34a4a8520268d09a7c91e6 /src/gallium/drivers/r600/r600_pipe.c | |
parent | 8ac9801669c68c33d9dd35a57baf985a4be49eff (diff) |
r600g: implement wait-free buffer transfer for DISCARD_RANGE
Reviewed-by: Alex Deucher <[email protected]>
Reviewed-by: Christian König <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600_pipe.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_pipe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.c b/src/gallium/drivers/r600/r600_pipe.c index 2a102621183..52725fc5c67 100644 --- a/src/gallium/drivers/r600/r600_pipe.c +++ b/src/gallium/drivers/r600/r600_pipe.c @@ -197,7 +197,7 @@ static struct pipe_context *r600_create_context(struct pipe_screen *screen, void return NULL; util_slab_create(&rctx->pool_transfers, - sizeof(struct pipe_transfer), 64, + sizeof(struct r600_transfer), 64, UTIL_SLAB_SINGLETHREADED); rctx->context.screen = screen; |