asahi: Relax assert in decoder

Seen == 0x8 with >4 render targets.

Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18380>
This commit is contained in:
Alyssa Rosenzweig 2022-08-09 21:53:59 -04:00 committed by Marge Bot
parent 9542f95864
commit e66a901bc8

View file

@ -544,7 +544,7 @@ agxdecode_cmdstream(unsigned cmdbuf_handle, unsigned map_handle, bool verbose)
agxdecode_stateful(*encoder, "Encoder", agxdecode_cmd, verbose); agxdecode_stateful(*encoder, "Encoder", agxdecode_cmd, verbose);
if (pip.clear_pipeline_unk) { if (pip.clear_pipeline_unk) {
assert(pip.clear_pipeline_unk == 0x4); fprintf(agxdecode_dump_stream, "Unk: %X\n", pip.clear_pipeline_unk);
agxdecode_stateful(pip.clear_pipeline, "Clear pipeline", agxdecode_stateful(pip.clear_pipeline, "Clear pipeline",
agxdecode_pipeline, verbose); agxdecode_pipeline, verbose);
} }