[Mesa-dev] [PATCH v2 09/24] mapi/new: sort by slot number
Emil Velikov
emil.l.velikov at gmail.com
Fri Dec 14 14:04:50 UTC 2018
From: Emil Velikov <emil.velikov at collabora.com>
Makes it easier to compare the newly generated header against the old
one. Will be reverted after the transition.
---
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 b0925d80151..ec48d522c05 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.2
More information about the mesa-dev
mailing list