Lines Matching refs:functions
29 Generates dispatch functions for EGL.
31 The list of functions and arguments is read from the Khronos's XML files, with
56 functions = []
60 functions.append((func, eglFunc))
63 functions = sorted(functions, key=lambda f: f[0].name)
66 text = generateHeader(functions)
68 text = generateSource(functions)
92 def generateHeader(functions):
110 for (func, eglFunc) in functions:
117 for (func, eglFunc) in functions:
131 def generateSource(functions):
139 for (func, eglFunc) in functions:
147 for (func, eglFunc) in functions:
155 for (func, eglFunc) in functions: