diff options
author | Jason Ekstrand <[email protected]> | 2017-05-12 17:14:18 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-05-26 07:58:01 -0700 |
commit | 79f2a5541f92920d35d3621179f7377c97cc75e1 (patch) | |
tree | e1ee974d04a032280eec1c855ad36905db17f4d6 /src/intel | |
parent | 6d11362d8b0325ab1f9d12a93323d36ad92d24b0 (diff) |
i965: Use BLORP for color clears on gen4-5
We don't support replicated data clears yet. Those take a bit more work
and enabling replicated data clears in its own commit is probably better
for bisectibility anyway.
Reviewed-by: Topi Pohjolainen <[email protected]>
Diffstat (limited to 'src/intel')
-rw-r--r-- | src/intel/blorp/blorp_clear.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/intel/blorp/blorp_clear.c b/src/intel/blorp/blorp_clear.c index fea5eb7b442..3d5c41cc714 100644 --- a/src/intel/blorp/blorp_clear.c +++ b/src/intel/blorp/blorp_clear.c @@ -399,6 +399,10 @@ blorp_clear(struct blorp_batch *batch, if (surf->surf->tiling == ISL_TILING_LINEAR) use_simd16_replicated_data = false; + /* Replicated clears don't work yet before gen6 */ + if (batch->blorp->isl_dev->info->gen < 6) + use_simd16_replicated_data = false; + /* Constant color writes ignore everyting in blend and color calculator * state. This is not documented. */ |