Changeset 43647 in vbox for trunk/src/VBox/GuestHost/OpenGL/glapi_parser
- Timestamp:
- Oct 15, 2012 5:42:34 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 81402
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/OpenGL/glapi_parser/apiutil.py
r42028 r43647 224 224 return funcs 225 225 226 def GetAllFunctionsAndOmittedAliases(specFile = ""): 227 """Return sorted list of all functions known to Chromium.""" 228 d = GetFunctionDict(specFile) 229 funcs = [] 230 for func in d.keys(): 231 rec = d[func] 232 if (not "omit" in rec.chromium or 233 rec.alias != ''): 234 funcs.append(func) 235 funcs.sort() 236 return funcs 226 237 227 238 def GetDispatchedFunctions(specFile = ""):
Note:
See TracChangeset
for help on using the changeset viewer.