Module: Mesa Branch: master Commit: 0314c7503f22c483d4cd57a5edf08b4c07fe6199 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=0314c7503f22c483d4cd57a5edf08b4c07fe6199
Author: Sagar Ghuge <[email protected]> Date: Tue Mar 9 18:18:54 2021 -0800 intel/blorp: Fix condition to figure out aux_address Fixes: 4dfabac4 ("blorp/gen12: Don't use aux address if implicit CCS") Signed-off-by: Sagar Ghuge <[email protected]> Reviewed-by: Mark Janes <[email protected]> Reviewed-by: Kenneth Graunke <[email protected]> Reviewed-by: Jason Ekstrand <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9491> --- src/intel/blorp/blorp_genX_exec.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/intel/blorp/blorp_genX_exec.h b/src/intel/blorp/blorp_genX_exec.h index 9f97af2f882..d2ef3ab9754 100644 --- a/src/intel/blorp/blorp_genX_exec.h +++ b/src/intel/blorp/blorp_genX_exec.h @@ -1451,7 +1451,7 @@ blorp_emit_surface_state(struct blorp_batch *batch, .aux_surf = &surface->aux_surf, .aux_usage = aux_usage, .address = blorp_get_surface_address(batch, surface->addr), - .aux_address = use_aux_address ? 0 : + .aux_address = !use_aux_address ? 0 : blorp_get_surface_address(batch, surface->aux_addr), .clear_address = !use_clear_address ? 0 : blorp_get_surface_address(batch, _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
