diff options
author | Marek Olšák <[email protected]> | 2012-02-26 19:44:45 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-02-27 02:03:24 +0100 |
commit | 897af1d499ed91ed3629432424eb1ac62bff2c5f (patch) | |
tree | dd61b8e1083d8039018f405913c3f70bf83bcd24 /src/gallium/drivers/r600/r600_resource.h | |
parent | 622b65d33bcc46a6b2cede6081b32a26a4ec7c7f (diff) |
r600g: cleanup r600_transfer_struct
Especially rename staging_texture to staging and change its type
to r600_resource. I will reuse it for buffers later.
Diffstat (limited to 'src/gallium/drivers/r600/r600_resource.h')
-rw-r--r-- | src/gallium/drivers/r600/r600_resource.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/gallium/drivers/r600/r600_resource.h b/src/gallium/drivers/r600/r600_resource.h index a53ecb8d37d..425222381d3 100644 --- a/src/gallium/drivers/r600/r600_resource.h +++ b/src/gallium/drivers/r600/r600_resource.h @@ -29,14 +29,10 @@ /* flag to indicate a resource is to be used as a transfer so should not be tiled */ #define R600_RESOURCE_FLAG_TRANSFER PIPE_RESOURCE_FLAG_DRV_PRIV -/* Texture transfer. */ struct r600_transfer { - /* Base class. */ struct pipe_transfer transfer; - /* Buffer transfer. */ - struct pipe_transfer *buffer_transfer; + struct r600_resource *staging; unsigned offset; - struct pipe_resource *staging_texture; }; struct r600_resource_texture { |