diff --git a/src/imagination/vulkan/vk_format.h b/src/imagination/vulkan/vk_format.h index 2473ac112bc..4d4fbee5d0c 100644 --- a/src/imagination/vulkan/vk_format.h +++ b/src/imagination/vulkan/vk_format.h @@ -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);