diff options
author | Marek Olšák <[email protected]> | 2017-11-25 21:21:57 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2017-11-29 18:21:30 +0100 |
commit | c63e225bff7417f792dc99f069dbdafc619e32d9 (patch) | |
tree | 65dc1b0bedd704c1a9d85d3562f7d9bbcd825cd6 /src/gallium/drivers/radeonsi/si_blit.c | |
parent | 175ee084ff5e05398467ad66ea99ed812711f1a1 (diff) |
radeonsi: remove some definitions and helpers from r600_pipe_common.h
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_blit.c')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_blit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/radeonsi/si_blit.c b/src/gallium/drivers/radeonsi/si_blit.c index 2f7c2be344c..0e314e9963c 100644 --- a/src/gallium/drivers/radeonsi/si_blit.c +++ b/src/gallium/drivers/radeonsi/si_blit.c @@ -315,7 +315,7 @@ si_decompress_depth(struct si_context *sctx, levels_z = level_mask & tex->dirty_level_mask; if (levels_z) { - if (r600_can_sample_zs(tex, false)) + if (si_can_sample_zs(tex, false)) inplace_planes |= PIPE_MASK_Z; else copy_planes |= PIPE_MASK_Z; @@ -325,7 +325,7 @@ si_decompress_depth(struct si_context *sctx, levels_s = level_mask & tex->stencil_dirty_level_mask; if (levels_s) { - if (r600_can_sample_zs(tex, true)) + if (si_can_sample_zs(tex, true)) inplace_planes |= PIPE_MASK_S; else copy_planes |= PIPE_MASK_S; @@ -374,7 +374,7 @@ si_decompress_depth(struct si_context *sctx, } if (inplace_planes) { - bool has_htile = r600_htile_enabled(tex, first_level); + bool has_htile = si_htile_enabled(tex, first_level); bool tc_compat_htile = vi_tc_compat_htile_enabled(tex, first_level); /* Don't decompress if there is no HTILE or when HTILE is |