iris: Dedent enum iris_depth_reg_mode
authorNanley Chery <nanley.g.chery@intel.com>
Mon, 1 Aug 2022 21:20:53 +0000 (14:20 -0700)
committerMarge Bot <emma+marge@anholt.net>
Wed, 3 Aug 2022 15:31:10 +0000 (15:31 +0000)
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17859>

src/gallium/drivers/iris/iris_state.c

index 1634771..88b0741 100644 (file)
@@ -1217,11 +1217,11 @@ struct iris_depth_buffer_state {
 };
 
 #if GFX_VERx10 == 120
-   enum iris_depth_reg_mode {
-      IRIS_DEPTH_REG_MODE_HW_DEFAULT = 0,
-      IRIS_DEPTH_REG_MODE_D16_1X_MSAA,
-      IRIS_DEPTH_REG_MODE_UNKNOWN,
-   };
+enum iris_depth_reg_mode {
+   IRIS_DEPTH_REG_MODE_HW_DEFAULT = 0,
+   IRIS_DEPTH_REG_MODE_D16_1X_MSAA,
+   IRIS_DEPTH_REG_MODE_UNKNOWN,
+};
 #endif
 
 /**