Lines Matching full:profile
64 def write_profile(filename, profile):
68 print '#error builtins profile', profile, 'failed to compile'
79 print 'static const char prototypes_for_' + profile + '[] ='
89 print 'static const char *functions_for_' + profile + ' [] = {'
96 for (filename, profile) in profiles:
97 write_profile(filename, profile)
231 for (filename, profile) in profiles:
232 if profile.endswith('_vert'):
234 elif profile.endswith('_frag'):
237 version = re.sub(r'_(vert|frag)$', '', profile)
245 print ' prototypes_for_' + profile + ','
246 print ' functions_for_' + profile + ','
247 print ' Elements(functions_for_' + profile + '));'