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

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

vulkan: enum generator: sort enums by names

Signed-off-by: Lionel Landwerlin <[email protected]>
Reviewed-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 | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/vulkan/util/gen_enum_to_str.py 
b/src/vulkan/util/gen_enum_to_str.py
index aa7001ef13..c615ed08c4 100644
--- a/src/vulkan/util/gen_enum_to_str.py
+++ b/src/vulkan/util/gen_enum_to_str.py
@@ -185,13 +185,14 @@ def main():
     efactory = EnumFactory(VkEnum)
     for filename in args.xml_files:
         parse_xml(efactory, filename)
+    enums = sorted(efactory.registry.values(), key=lambda e: e.name)
 
     for template, file_ in [(C_TEMPLATE, os.path.join(args.outdir, 
'vk_enum_to_str.c')),
                             (H_TEMPLATE, os.path.join(args.outdir, 
'vk_enum_to_str.h'))]:
         with open(file_, 'wb') as f:
             f.write(template.render(
                 file=os.path.basename(__file__),
-                enums=efactory.registry.values(),
+                enums=enums,
                 copyright=COPYRIGHT,
                 FOREIGN_ENUM_VALUES=FOREIGN_ENUM_VALUES))
 

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

Reply via email to