VirtualBox

Ignore:
Timestamp:
Oct 15, 2012 5:42:34 PM (13 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
81402
Message:

crOpenGL: generate omitted aliaces for GetProcAddress

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/GuestHost/OpenGL/glapi_parser/apiutil.py

    r42028 r43647  
    224224        return funcs
    225225       
     226def 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
    226237
    227238def GetDispatchedFunctions(specFile = ""):
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette