pvr: Remove clang-format off comment from vk_format.h
authorRajnesh Kanwal <rajnesh.kanwal@imgtec.com>
Tue, 24 May 2022 13:17:09 +0000 (14:17 +0100)
committerRajnesh Kanwal <rajnesh.kanwal@imgtec.com>
Tue, 7 Jun 2022 13:55:11 +0000 (14:55 +0100)
This enables clang formatting for vk_format.h. This was disabled
as we were using tabs for indentation and vk_format.h uses three
spaces for indentation.

Signed-off-by: Rajnesh Kanwal <rajnesh.kanwal@imgtec.com>
Reviewed-by: Frank Binns <frank.binns@imgtec.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16897>

src/imagination/vulkan/vk_format.h

index 2473ac1..4d4fbee 100644 (file)
@@ -28,7 +28,6 @@
  * SOFTWARE.
  */
 
-/* clang-format off */
 #ifndef VK_FORMAT_H
 #define VK_FORMAT_H
 
@@ -40,8 +39,7 @@
 
 #include "util/u_endian.h"
 
-static inline bool
-vk_format_is_alpha_on_msb(VkFormat vk_format)
+static inline bool vk_format_is_alpha_on_msb(VkFormat vk_format)
 {
    const struct util_format_description *desc =
       vk_format_description(vk_format);
@@ -49,14 +47,14 @@ vk_format_is_alpha_on_msb(VkFormat vk_format)
    return (desc->colorspace == UTIL_FORMAT_COLORSPACE_RGB ||
            desc->colorspace == UTIL_FORMAT_COLORSPACE_SRGB) &&
 #if UTIL_ARCH_BIG_ENDIAN
-           desc->swizzle[3] == PIPE_SWIZZLE_X;
+          desc->swizzle[3] == PIPE_SWIZZLE_X;
 #else
-           desc->swizzle[3] == PIPE_SWIZZLE_W;
+          desc->swizzle[3] == PIPE_SWIZZLE_W;
 #endif
 }
 
-static inline uint
-vk_format_get_channel_width(VkFormat vk_format, uint32_t channel)
+static inline uint vk_format_get_channel_width(VkFormat vk_format,
+                                               uint32_t channel)
 {
    const struct util_format_description *desc =
       vk_format_description(vk_format);
@@ -64,8 +62,7 @@ vk_format_get_channel_width(VkFormat vk_format, uint32_t channel)
    return desc->channel[channel].size;
 }
 
-static inline bool
-vk_format_has_32bit_component(VkFormat vk_format)
+static inline bool vk_format_has_32bit_component(VkFormat vk_format)
 {
    const struct util_format_description *desc =
       vk_format_description(vk_format);
@@ -88,8 +85,7 @@ vk_format_get_component_bits(VkFormat vk_format,
                                          component);
 }
 
-static inline bool
-vk_format_is_normalized(VkFormat vk_format)
+static inline bool vk_format_is_normalized(VkFormat vk_format)
 {
    const struct util_format_description *desc =
       vk_format_description(vk_format);