From ec9d838aa56d2c4bc5649d7c26ac61abb6c4b9bb Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Thu, 16 Sep 2010 17:18:39 +1000 Subject: r600g: hide radeon_ctx inside winsys. no need for this info to be exported to pipe driver. --- src/gallium/drivers/r600/r600_blit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/gallium/drivers/r600/r600_blit.c') diff --git a/src/gallium/drivers/r600/r600_blit.c b/src/gallium/drivers/r600/r600_blit.c index e6b3be6d3b..2c22adb62a 100644 --- a/src/gallium/drivers/r600/r600_blit.c +++ b/src/gallium/drivers/r600/r600_blit.c @@ -570,10 +570,10 @@ int r600_blit_uncompress_depth(struct pipe_context *ctx, struct r600_resource_te r600_queries_suspend(ctx); /* schedule draw*/ - r = radeon_ctx_set_draw(&rctx->ctx, &draw); + r = radeon_ctx_set_draw(rctx->ctx, &draw); if (r == -EBUSY) { r600_flush(ctx, 0, NULL); - r = radeon_ctx_set_draw(&rctx->ctx, &draw); + r = radeon_ctx_set_draw(rctx->ctx, &draw); } if (r) { goto out; -- cgit v1.2.3