summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/r300/r300_transfer.c
diff options
context:
space:
mode:
authorMarek Olšák <maraeo@gmail.com>2010-04-18 00:11:29 +0200
committerMarek Olšák <maraeo@gmail.com>2010-04-18 02:56:09 +0200
commit4185d9770f1e08f190a57547ca47a231b9c0d6d7 (patch)
treef1f89ad9f088b982159f0d3487fbd89b45f7f131 /src/gallium/drivers/r300/r300_transfer.c
parentbb4f5fff0c782f35353e8bfc1b1227e3cc3d5986 (diff)
r300g: remove r300_transfer::ctx
Diffstat (limited to 'src/gallium/drivers/r300/r300_transfer.c')
-rw-r--r--src/gallium/drivers/r300/r300_transfer.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/gallium/drivers/r300/r300_transfer.c b/src/gallium/drivers/r300/r300_transfer.c
index e4df750455..b795b2e5ab 100644
--- a/src/gallium/drivers/r300/r300_transfer.c
+++ b/src/gallium/drivers/r300/r300_transfer.c
@@ -35,9 +35,6 @@ struct r300_transfer {
/* Parent class */
struct pipe_transfer transfer;
- /* Pipe context. */
- struct pipe_context *ctx;
-
/* Offset from start of buffer. */
unsigned offset;
@@ -137,7 +134,6 @@ r300_texture_get_transfer(struct pipe_context *ctx,
trans->transfer.sr = sr;
trans->transfer.usage = usage;
trans->transfer.box = *box;
- trans->ctx = ctx;
/* If the texture is tiled, we must create a temporary detiled texture
* for this transfer. */
@@ -208,7 +204,7 @@ void r300_texture_transfer_destroy(struct pipe_context *ctx,
if (r300transfer->detiled_texture) {
if (trans->usage & PIPE_TRANSFER_WRITE) {
- r300_copy_into_tiled_texture(r300transfer->ctx, r300transfer);
+ r300_copy_into_tiled_texture(ctx, r300transfer);
}
pipe_resource_reference(