iris: Enable fast clears on gen8.

Since we are now properly storing the clear color with SCS bits, we can
now enable fast clears on gen8 too.

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
Rafael Antognolli 2019-03-26 15:35:00 -07:00
parent 7339660e80
commit 08c44b47a9
1 changed files with 1 additions and 2 deletions

View File

@ -78,8 +78,7 @@ can_fast_clear_color(struct iris_context *ice,
struct iris_batch *batch = &ice->batches[IRIS_BATCH_RENDER];
const struct gen_device_info *devinfo = &batch->screen->devinfo;
/* XXX: Need to fix channel select for gen8 before enabling this. */
if (devinfo->gen != 9)
if (devinfo->gen > 9)
return false;
if (res->aux.usage == ISL_AUX_USAGE_NONE)