vk: Reindent struct anv_image
authorChad Versace <chad.versace@intel.com>
Fri, 26 Jun 2015 22:27:20 +0000 (15:27 -0700)
committerChad Versace <chad.versace@intel.com>
Fri, 26 Jun 2015 22:27:20 +0000 (15:27 -0700)
src/vulkan/private.h

index 65986155317efa083ec4c3629cc6cff87753e90b..6e122899e2cdd646ce534d56d52cc8b68a97da1c 100644 (file)
@@ -785,22 +785,22 @@ const struct anv_format *
 anv_format_for_vk_format(VkFormat format);
 
 struct anv_image {
-   VkImageType                                  type;
-   VkExtent3D                                   extent;
-   VkFormat                                     format;
-   uint32_t                                     tile_mode;
-   VkDeviceSize                                 size;
-   uint32_t                                     alignment;
-   uint32_t                                     stride;
+   VkImageType type;
+   VkExtent3D extent;
+   VkFormat format;
+   uint32_t tile_mode;
+   VkDeviceSize size;
+   uint32_t alignment;
+   uint32_t stride;
 
-   uint32_t                                     stencil_offset;
-   uint32_t                                     stencil_stride;
+   uint32_t stencil_offset;
+   uint32_t stencil_stride;
 
    /* Set when bound */
-   struct anv_bo *                              bo;
-   VkDeviceSize                                 offset;
+   struct anv_bo *bo;
+   VkDeviceSize offset;
 
-   struct anv_swap_chain *                      swap_chain;
+   struct anv_swap_chain *swap_chain;
 
    /**
     * \name Alignment of miptree images, in units of pixels.