diff options
author | Marek Olšák <[email protected]> | 2014-03-03 22:53:58 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2014-03-07 18:07:05 +0100 |
commit | fcdf6fa86cb4dc530b8ab6881faa1da1aafa2b81 (patch) | |
tree | b5b1b2a065ee0e80d34d7d74ec5987c265915afd /src/gallium/drivers/r600/r600_pipe.h | |
parent | 8a08051e2a7227061300e344a4e41a1cdf2d6145 (diff) |
r600g: fix blitting the last 2 mipmap levels for Evergreen
This fixes a lot of compressedteximage piglit tests.
R600-R700 don't have this issue.
Cc: [email protected]
Diffstat (limited to 'src/gallium/drivers/r600/r600_pipe.h')
-rw-r--r-- | src/gallium/drivers/r600/r600_pipe.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.h b/src/gallium/drivers/r600/r600_pipe.h index 8e9575a0c81..e5bb2b883d5 100644 --- a/src/gallium/drivers/r600/r600_pipe.h +++ b/src/gallium/drivers/r600/r600_pipe.h @@ -512,7 +512,8 @@ struct pipe_sampler_view * evergreen_create_sampler_view_custom(struct pipe_context *ctx, struct pipe_resource *texture, const struct pipe_sampler_view *state, - unsigned width0, unsigned height0); + unsigned width0, unsigned height0, + unsigned force_level); void evergreen_init_common_regs(struct r600_command_buffer *cb, enum chip_class ctx_chip_class, enum radeon_family ctx_family, |