radeonsi: disable fast color clear for 1D-tiled surfaces on CIK

This will be re-enabled once my kernel fix lands.
This commit is contained in:
Marek Olšák 2014-03-22 17:25:26 +01:00
parent 4c79f088c0
commit 011569b5b7
1 changed files with 6 additions and 0 deletions

View File

@ -1255,6 +1255,12 @@ void evergreen_do_fast_color_clear(struct r600_common_context *rctx,
continue;
}
/* fast color clear with 1D tiling doesn't work on CIK */
if (tex->surface.level[0].mode == RADEON_SURF_MODE_1D &&
rctx->chip_class >= CIK) {
continue;
}
/* ensure CMASK is enabled */
r600_texture_alloc_cmask_separate(rctx->screen, tex);
if (tex->cmask.size == 0) {