i965/bufmgr: Use the correct argument order for bo_alloc_internal
authorJason Ekstrand <jason.ekstrand@intel.com>
Wed, 27 Jun 2018 01:32:38 +0000 (18:32 -0700)
committerJason Ekstrand <jason.ekstrand@intel.com>
Wed, 27 Jun 2018 19:43:18 +0000 (12:43 -0700)
The memzone and flags parameters were accidentally flipped in the call
from brw_bo_alloc_tiled_2d.

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
src/mesa/drivers/dri/i965/brw_bufmgr.c

index 7ac3bcad3daf2176b0457165d6accfd7d1d34667..09d45e30ecc4186bf399c984836b4c6042a0fa51 100644 (file)
@@ -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);
 }
 
 /**