iris: indentation
authorKenneth Graunke <kenneth@whitecape.org>
Sat, 16 Jun 2018 17:41:38 +0000 (10:41 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Thu, 21 Feb 2019 18:26:07 +0000 (10:26 -0800)
src/gallium/drivers/iris/iris_resource.c

index 5eccd66de59be30c5867e4922b0812f56376ed0d..088ef23ac3d4e2af0b2c3a7cf8267bdf0447b1a1 100644 (file)
@@ -468,8 +468,7 @@ iris_map_tiled_memcpy(struct iris_transfer *map)
     * a 16-byte alignment (that is, its `x0` is 16-byte aligned).  Here we
     * over-allocate the linear buffer to get the proper alignment.
     */
-   map->buffer =
-      os_malloc_aligned(map->stride * (y2 - y1) + (x1 & 0xf), 16);
+   map->buffer = os_malloc_aligned(map->stride * (y2 - y1) + (x1 & 0xf), 16);
    map->ptr = (char *)map->buffer + (x1 & 0xf);
    assert(map->buffer);