amd/common: switch to 3-spaces style
[mesa.git] / src / amd / common / gfx10_format_table.h
index 2692c817f08f0c81bc213dc4615396c8ebf83868..9eff122119282f31b8bb05b06c78e619a9ba93cc 100644 (file)
 #ifndef GFX10_FORMAT_TABLE_H
 #define GFX10_FORMAT_TABLE_H
 
-#include <stdbool.h>
 #include "pipe/p_format.h"
 
+#include <stdbool.h>
+
 struct gfx10_format {
-    unsigned img_format:9;
+   unsigned img_format : 9;
 
-    /* Various formats are only supported with workarounds for vertex fetch,
-     * and some 32_32_32 formats are supported natively, but only for buffers
-     * (possibly with some image support, actually, but no filtering). */
-    bool buffers_only:1;
+   /* Various formats are only supported with workarounds for vertex fetch,
+    * and some 32_32_32 formats are supported natively, but only for buffers
+    * (possibly with some image support, actually, but no filtering). */
+   bool buffers_only : 1;
 };
 
 extern const struct gfx10_format gfx10_format_table[PIPE_FORMAT_COUNT];