diff options
author | Rafael Antognolli <[email protected]> | 2019-03-26 15:35:00 -0700 |
---|---|---|
committer | Rafael Antognolli <[email protected]> | 2019-04-02 15:26:48 -0700 |
commit | 08c44b47a984bd25d654ea89af5bc353d8270154 (patch) | |
tree | a4fafc1d1b67e2747e2079dfeb500fc25e83e687 /src/gallium | |
parent | 7339660e80331ed773fc6dbb8295384d4ef6954e (diff) |
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 <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/iris/iris_clear.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gallium/drivers/iris/iris_clear.c b/src/gallium/drivers/iris/iris_clear.c index 3a617bb7e21..6e0a569e7b0 100644 --- a/src/gallium/drivers/iris/iris_clear.c +++ b/src/gallium/drivers/iris/iris_clear.c @@ -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) |