Home | History | Annotate | Download | only in registry

Lines Matching defs:profile

29 # profile - enable Python profiling
37 profile = False
61 elif (arg == '-profile'):
62 write('Enabling profiling (-profile)', file=sys.stderr)
63 profile = True
197 '/* glcorearb.h is for use with OpenGL core profile implementations.',
201 '** glcorearb.h includes only APIs in the latest OpenGL core profile',
203 '** can be supported by the core profile. It does not, and never will',
204 '** include functionality removed from the core profile, such as',
273 profile = 'compatibility',
288 # GL core profile + extensions - GL/glcorearb.h
292 profile = 'core',
295 defaultExtensions = 'glcore', # Default extensions for GL core profile (only)
311 profile = 'common',
330 profile = 'common',
349 profile = 'common',
368 profile = 'common',
387 profile = 'common',
406 profile = 'common',
425 profile = None,
444 profile = None,
463 profile = None,
483 profile = None,
503 profile = None,
522 profile = None,
572 elif (profile):
574 cProfile.run('genHeaders()', 'profile.txt')
575 p = pstats.Stats('profile.txt')