diff options
author | Marek Olšák <[email protected]> | 2012-08-14 02:29:17 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-08-16 20:44:53 +0200 |
commit | 951ac46a6a0a901b53a518c8dcde734578cbf228 (patch) | |
tree | cd8a654912bdc49ccbcdd9b43eb6f8e2cf4ca1d4 /src/gallium/drivers/r600/r600_resource.h | |
parent | 952c90576753550f4deed4dac42d8fd6129a9cce (diff) |
r600g: rename r600_resource_texture to r600_texture
Diffstat (limited to 'src/gallium/drivers/r600/r600_resource.h')
-rw-r--r-- | src/gallium/drivers/r600/r600_resource.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/r600/r600_resource.h b/src/gallium/drivers/r600/r600_resource.h index 80041a35131..3497ca96636 100644 --- a/src/gallium/drivers/r600/r600_resource.h +++ b/src/gallium/drivers/r600/r600_resource.h @@ -42,7 +42,7 @@ struct r600_resource_global { struct compute_memory_item *chunk; }; -struct r600_resource_texture { +struct r600_texture { struct r600_resource resource; unsigned array_mode[PIPE_MAX_TEXTURE_LEVELS]; @@ -52,7 +52,7 @@ struct r600_resource_texture { bool is_depth; bool is_rat; unsigned dirty_db_mask; /* each bit says if that miplevel is dirty */ - struct r600_resource_texture *flushed_depth_texture; + struct r600_texture *flushed_depth_texture; boolean is_flushing_texture; struct radeon_surface surface; }; @@ -109,7 +109,7 @@ static INLINE struct r600_resource *r600_resource(struct pipe_resource *r) bool r600_init_flushed_depth_texture(struct pipe_context *ctx, struct pipe_resource *texture, - struct r600_resource_texture **staging); + struct r600_texture **staging); /* r600_texture.c texture transfer functions. */ struct pipe_transfer* r600_texture_get_transfer(struct pipe_context *ctx, |