anv/formats: Re-indent the fmt() macro
authorChad Versace <chad.versace@intel.com>
Thu, 12 Nov 2015 20:00:15 +0000 (12:00 -0800)
committerChad Versace <chad.versace@intel.com>
Thu, 12 Nov 2015 20:21:46 +0000 (12:21 -0800)
Use one line per struct member.

src/vulkan/anv_formats.c

index cc3df577201450256930ff78f0d16f88a4e1f7bf..3e7a6f6e5a8f05bde7cc27d2170dd23f7409d482 100644 (file)
 #include "brw_surface_formats.h"
 
 #define fmt(__vk_fmt, __hw_fmt, ...) \
-   [__vk_fmt] = { .vk_format = __vk_fmt, .name = #__vk_fmt, .surface_format = __hw_fmt, .bw = 1, .bh = 1, .bd = 1, __VA_ARGS__ }
+   [__vk_fmt] = { \
+      .vk_format = __vk_fmt, \
+      .name = #__vk_fmt, \
+      .surface_format = __hw_fmt, \
+      .bw = 1, .bh = 1, .bd = 1, \
+      __VA_ARGS__ \
+   }
 
 static const struct anv_format anv_formats[] = {
    fmt(VK_FORMAT_UNDEFINED,               ISL_FORMAT_RAW,                    .bs = 1,   .num_channels = 1),