Module: Mesa Branch: master Commit: 0e269c0ac2d98dd3a30a7af32a5a1895a0df96b5 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=0e269c0ac2d98dd3a30a7af32a5a1895a0df96b5
Author: Lionel Landwerlin <[email protected]> Date: Thu Mar 7 16:14:13 2019 +0000 iris: fix decoder call Signed-off-by: Lionel Landwerlin <[email protected]> Fixes: acb50d6b1ff1b7 ("intel/decoders: handle decoding MI_BBS from ring") --- src/gallium/drivers/iris/iris_batch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/iris/iris_batch.c b/src/gallium/drivers/iris/iris_batch.c index 1e6f4681e71..f6362fd684a 100644 --- a/src/gallium/drivers/iris/iris_batch.c +++ b/src/gallium/drivers/iris/iris_batch.c @@ -145,7 +145,7 @@ decode_batch(struct iris_batch *batch) { void *map = iris_bo_map(batch->dbg, batch->exec_bos[0], MAP_READ); gen_print_batch(&batch->decoder, map, batch->primary_batch_size, - batch->exec_bos[0]->gtt_offset); + batch->exec_bos[0]->gtt_offset, false); } void _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
