From: Marek Olšák Date: Tue, 31 Jan 2012 06:44:22 +0000 (+0100) Subject: r300g: don't use pipe_context::winsys X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=267bddaacb4b237b8fa6ab055eb75485efad7b3c;p=mesa.git r300g: don't use pipe_context::winsys --- diff --git a/src/gallium/drivers/r300/r300_transfer.c b/src/gallium/drivers/r300/r300_transfer.c index 91e861a4a73..10ff2b019f0 100644 --- a/src/gallium/drivers/r300/r300_transfer.c +++ b/src/gallium/drivers/r300/r300_transfer.c @@ -231,7 +231,6 @@ void* r300_texture_transfer_map(struct pipe_context *ctx, struct pipe_transfer *transfer) { struct r300_context *r300 = r300_context(ctx); - struct radeon_winsys *rws = (struct radeon_winsys *)ctx->winsys; struct r300_transfer *r300transfer = r300_transfer(transfer); struct r300_resource *tex = r300_resource(transfer->resource); char *map; @@ -240,13 +239,11 @@ void* r300_texture_transfer_map(struct pipe_context *ctx, if (r300transfer->linear_texture) { /* The detiled texture is of the same size as the region being mapped * (no offset needed). */ - return rws->buffer_map(r300transfer->linear_texture->buf, - r300->cs, - transfer->usage); + return r300->rws->buffer_map(r300transfer->linear_texture->buf, + r300->cs, transfer->usage); } else { /* Tiling is disabled. */ - map = rws->buffer_map(tex->buf, r300->cs, - transfer->usage); + map = r300->rws->buffer_map(tex->buf, r300->cs, transfer->usage); if (!map) { return NULL;