From: Jason Ekstrand Date: Wed, 27 Jun 2018 01:32:38 +0000 (-0700) Subject: i965/bufmgr: Use the correct argument order for bo_alloc_internal X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6a35ba5ce980ae248cd132457a98b9a8b5ce7134;p=mesa.git i965/bufmgr: Use the correct argument order for bo_alloc_internal The memzone and flags parameters were accidentally flipped in the call from brw_bo_alloc_tiled_2d. Reviewed-by: Kenneth Graunke --- diff --git a/src/mesa/drivers/dri/i965/brw_bufmgr.c b/src/mesa/drivers/dri/i965/brw_bufmgr.c index 7ac3bcad3da..09d45e30ecc 100644 --- a/src/mesa/drivers/dri/i965/brw_bufmgr.c +++ b/src/mesa/drivers/dri/i965/brw_bufmgr.c @@ -720,8 +720,8 @@ brw_bo_alloc_tiled_2d(struct brw_bufmgr *bufmgr, const char *name, if (tiling == I915_TILING_NONE) stride = 0; - return bo_alloc_internal(bufmgr, name, size, flags, - memzone, tiling, stride); + return bo_alloc_internal(bufmgr, name, size, memzone, + flags, tiling, stride); } /**