diff options
author | Nicolai Hähnle <nicolai.haehnle@amd.com> | 2016-06-29 21:56:42 +0200 |
---|---|---|
committer | Nicolai Hähnle <nicolai.haehnle@amd.com> | 2016-07-06 10:43:43 +0200 |
commit | dd651261530e2d885d150755c9521e8f6e97c851 (patch) | |
tree | 10c9bdf1058c5229b08b57f26510b56d9c246f93 /src/gallium/drivers/r600/r600_blit.c | |
parent | 065eeb79f706d10340044447cc5821e64063ea9e (diff) |
gallium/radeon: add can_sample_z/s flags for textures
v2: adjust r600_init_color_surface as well
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Diffstat (limited to 'src/gallium/drivers/r600/r600_blit.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_blit.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/gallium/drivers/r600/r600_blit.c b/src/gallium/drivers/r600/r600_blit.c index edf972650f9..6e5675b246c 100644 --- a/src/gallium/drivers/r600/r600_blit.c +++ b/src/gallium/drivers/r600/r600_blit.c @@ -277,8 +277,7 @@ void r600_decompress_depth_textures(struct r600_context *rctx, tex = (struct r600_texture *)view->texture; assert(tex->is_depth && !tex->is_flushing_texture); - if (rctx->b.chip_class >= EVERGREEN || - r600_can_read_depth(tex)) { + if (r600_can_sample_zs(tex, rview->is_stencil_sampler)) { r600_blit_decompress_depth_in_place(rctx, tex, rview->is_stencil_sampler, view->u.tex.first_level, view->u.tex.last_level, @@ -374,8 +373,7 @@ static bool r600_decompress_subresource(struct pipe_context *ctx, struct r600_texture *rtex = (struct r600_texture*)tex; if (rtex->is_depth && !rtex->is_flushing_texture) { - if (rctx->b.chip_class >= EVERGREEN || - r600_can_read_depth(rtex)) { + if (r600_can_sample_zs(rtex, false)) { r600_blit_decompress_depth_in_place(rctx, rtex, false, level, level, first_layer, last_layer); |