iris: whitespace fixes
authorKenneth Graunke <kenneth@whitecape.org>
Mon, 10 Dec 2018 08:49:35 +0000 (00:49 -0800)
committerKenneth Graunke <kenneth@whitecape.org>
Thu, 21 Feb 2019 18:26:11 +0000 (10:26 -0800)
src/gallium/drivers/iris/iris_resource.c
src/gallium/drivers/iris/iris_resource.h

index 6ab4614fb0ebecc9d64a7c7105e634c321290e1b..3b8b0f51101478207363b992d6a18cc2960febfd 100644 (file)
@@ -459,7 +459,7 @@ iris_resource_from_handle(struct pipe_screen *pscreen,
 
    uint64_t modifier = whandle->modifier;
    if (modifier == DRM_FORMAT_MOD_INVALID) {
-         modifier = tiling_to_modifier(res->bo->tiling_mode);
+      modifier = tiling_to_modifier(res->bo->tiling_mode);
    }
    const struct isl_drm_modifier_info *mod_info =
       isl_drm_modifier_get_info(modifier);
@@ -581,11 +581,11 @@ s8_offset(uint32_t stride, uint32_t x, uint32_t y, bool swizzled)
    if (swizzled) {
       /* adjust for bit6 swizzling */
       if (((byte_x / 8) % 2) == 1) {
-        if (((byte_y / 8) % 2) == 0) {
-           u += 64;
-        } else {
-           u -= 64;
-        }
+         if (((byte_y / 8) % 2) == 0) {
+            u += 64;
+         } else {
+            u -= 64;
+         }
       }
    }
 
index 63742e8fb0107dbebcdf2778b43dd08da6e25d6e..0edc1b6f3a9a1a5e6b2d0ba56bb666a552137022 100644 (file)
@@ -45,7 +45,7 @@ struct iris_format_info {
  * They contain the storage (BO) and layout information (ISL surface).
  */
 struct iris_resource {
-   struct pipe_resource        base;
+   struct pipe_resource base;
    enum pipe_format internal_format;
 
    /**