panfrost: Fix crc_valid condition

Fixes fails in dEQP-GLES31.functional.texture.border_clamp.* when run in
parallel with certain other tests.

Signed-off-by: Alyssa Rosenzweig <alyssa@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11123>
This commit is contained in:
Alyssa Rosenzweig
2021-06-02 17:08:53 -04:00
committed by Marge Bot
parent 729b8c55f4
commit a78487f795

View File

@@ -736,7 +736,7 @@ pan_emit_mfbd(const struct panfrost_device *dev,
* valid for next time. */
cfg.crc_write_enable = valid || full;
crc_slice->crc_valid |= full;
crc_slice->crc_valid = full;
}
}