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_pipe.h | |
parent | 952c90576753550f4deed4dac42d8fd6129a9cce (diff) |
r600g: rename r600_resource_texture to r600_texture
Diffstat (limited to 'src/gallium/drivers/r600/r600_pipe.h')
-rw-r--r-- | src/gallium/drivers/r600/r600_pipe.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.h b/src/gallium/drivers/r600/r600_pipe.h index 5d72952168e..1a275adb5a2 100644 --- a/src/gallium/drivers/r600/r600_pipe.h +++ b/src/gallium/drivers/r600/r600_pipe.h @@ -484,8 +484,8 @@ void r600_copy_buffer(struct pipe_context *ctx, struct struct pipe_resource *src, const struct pipe_box *src_box); void r600_init_blit_functions(struct r600_context *rctx); void r600_blit_uncompress_depth(struct pipe_context *ctx, - struct r600_resource_texture *texture, - struct r600_resource_texture *staging, + struct r600_texture *texture, + struct r600_texture *staging, unsigned first_level, unsigned last_level, unsigned first_layer, unsigned last_layer, unsigned first_sample, unsigned last_sample); @@ -546,7 +546,7 @@ void r600_init_surface_functions(struct r600_context *r600); uint32_t r600_translate_texformat(struct pipe_screen *screen, enum pipe_format format, const unsigned char *swizzle_view, uint32_t *word4_p, uint32_t *yuv_format_p); -unsigned r600_texture_get_offset(struct r600_resource_texture *rtex, +unsigned r600_texture_get_offset(struct r600_texture *rtex, unsigned level, unsigned layer); /* r600_translate.c */ |