From: Emil Velikov <emil.veli...@collabora.com> Makes it easier to compare the newly generated header against the old one. --- src/mapi/new/genCommon.py | 3 +++ 1 file changed, 3 insertions(+)
diff --git a/src/mapi/new/genCommon.py b/src/mapi/new/genCommon.py index 5c721acbaca..ee3c468479d 100644 --- a/src/mapi/new/genCommon.py +++ b/src/mapi/new/genCommon.py @@ -74,6 +74,9 @@ def getFunctionsFromRoots(roots): for i in range(len(functions)): functions[i] = functions[i]._replace(slot=i) + # Sort the function list by slot.... to simplify the diff + functions = sorted(functions, key=lambda f: f.slot) + return functions def getExportNamesFromRoots(target, roots): -- 2.19.1 _______________________________________________ mesa-dev mailing list mesa-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/mesa-dev