diff options
author | Jerome Glisse <[email protected]> | 2010-09-20 15:35:19 -0400 |
---|---|---|
committer | Jerome Glisse <[email protected]> | 2010-09-20 16:02:13 -0400 |
commit | 0f099f2906773690210661fb533e207626dc8e40 (patch) | |
tree | 02bbbc267829fa51a799fa117ed7062ba8f085c4 /src/gallium/drivers/r600/r600_texture.c | |
parent | 021e68b2cdc9a675887dac33689d5ffe244d8f9a (diff) |
r600g: use pipe context for flushing inside map
This allow to share code path btw old & new, also
remove check on reference this might make things
a little slower but new design doesn't use reference
stuff.
Signed-off-by: Jerome Glisse <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600_texture.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_texture.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_texture.c b/src/gallium/drivers/r600/r600_texture.c index 66332580908..abfe406402a 100644 --- a/src/gallium/drivers/r600/r600_texture.c +++ b/src/gallium/drivers/r600/r600_texture.c @@ -346,7 +346,7 @@ void* r600_texture_transfer_map(struct pipe_context *ctx, transfer->box.y / util_format_get_blockheight(format) * transfer->stride + transfer->box.x / util_format_get_blockwidth(format) * util_format_get_blocksize(format); } - map = radeon_ws_bo_map(radeon, bo, 0, r600_context(ctx)); + map = radeon_ws_bo_map(radeon, bo, 0, ctx); if (!map) { return NULL; } |