Home | History | Annotate | Download | only in vulkan

Lines Matching refs:entrypoints

68     entrypoints = []
80 entrypoints.append((type, shortname, params, i, hash(fullname), guard))
81 return entrypoints
89 entrypoints = extension.findall('./require/command')
90 for entrypoint in entrypoints:
96 entrypoints = get_entrypoints(doc, get_entrypoints_defines(doc))
98 # For outputting entrypoints.h we generate a radv_EntryPoint() prototype
106 print " void *entrypoints[%d];" % len(entrypoints)
109 for type, name, args, num, h, guard in entrypoints:
122 for type, name, args, num, h, guard in entrypoints:
171 for type, name, args, num, h, guard in entrypoints:
179 print "\nstatic const struct radv_entrypoint entrypoints[] = {"
180 for type, name, args, num, h, guard in entrypoints:
193 for type, name, args, num, h, guard in entrypoints:
198 for type, name, args, num, h, guard in entrypoints:
209 return radv_layer.entrypoints[index];
219 for type, name, args, num, h, guard in entrypoints:
278 e = &entrypoints[i];