Module: Mesa
Branch: master
Commit: 0ac7b84672e094cb11922b6bd62b7e5e8ced52a8
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=0ac7b84672e094cb11922b6bd62b7e5e8ced52a8

Author: Lionel Landwerlin <[email protected]>
Date:   Fri Sep 15 15:10:54 2017 +0100

vulkan: enum generator: align function declarations/prototypes

Signed-off-by: Lionel Landwerlin <[email protected]>
Acked-by: Jason Ekstrand <[email protected]>
Reviewed-by: Chad Versace <[email protected]>
Reviewed-by: Dylan Baker <[email protected]>

---

 src/vulkan/util/gen_enum_to_str.py | 42 +++++++++++++++++++-------------------
 1 file changed, 21 insertions(+), 21 deletions(-)

diff --git a/src/vulkan/util/gen_enum_to_str.py 
b/src/vulkan/util/gen_enum_to_str.py
index df326d0a99..aa7001ef13 100644
--- a/src/vulkan/util/gen_enum_to_str.py
+++ b/src/vulkan/util/gen_enum_to_str.py
@@ -64,27 +64,27 @@ C_TEMPLATE = Template(textwrap.dedent(u"""\
 
     % for enum in enums:
 
-        const char *
-        vk_${enum.name[2:]}_to_str(${enum.name} input)
-        {
-            switch(input) {
-            % for v in enum.values:
-                % if v in FOREIGN_ENUM_VALUES:
-
-                #pragma GCC diagnostic push
-                #pragma GCC diagnostic ignored "-Wswitch"
-                % endif
-                case ${v}:
-                    return "${v}";
-                % if v in FOREIGN_ENUM_VALUES:
-                #pragma GCC diagnostic pop
-
-                % endif
-            % endfor
-            default:
-                unreachable("Undefined enum value.");
-            }
+    const char *
+    vk_${enum.name[2:]}_to_str(${enum.name} input)
+    {
+        switch(input) {
+        % for v in enum.values:
+            % if v in FOREIGN_ENUM_VALUES:
+
+            #pragma GCC diagnostic push
+            #pragma GCC diagnostic ignored "-Wswitch"
+            % endif
+            case ${v}:
+                return "${v}";
+            % if v in FOREIGN_ENUM_VALUES:
+            #pragma GCC diagnostic pop
+
+            % endif
+        % endfor
+        default:
+            unreachable("Undefined enum value.");
         }
+    }
     %endfor"""),
     output_encoding='utf-8')
 
@@ -102,7 +102,7 @@ H_TEMPLATE = Template(textwrap.dedent(u"""\
     #include <vulkan/vk_android_native_buffer.h>
 
     % for enum in enums:
-        const char * vk_${enum.name[2:]}_to_str(${enum.name} input);
+    const char * vk_${enum.name[2:]}_to_str(${enum.name} input);
     % endfor
 
     #endif"""),

_______________________________________________
mesa-commit mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to