Package glitter :: Package raw :: Module logger
[hide private]
[frames] | no frames]

Module logger

source code

Logging of OpenGL calls.

Classes [hide private]
  LoggingWrapper
Wrap a ctypes function so that function calls are logged.
Functions [hide private]
 
add_logger(logger='root', name_re='^(gl|glu|glut|glX)[A-Z].*$', d=None)
Add a logger to OpenGL functions.
source code
Variables [hide private]
  __package__ = 'glitter.raw'
Function Details [hide private]

add_logger(logger='root', name_re='^(gl|glu|glut|glX)[A-Z].*$', d=None)

source code 

Add a logger to OpenGL functions.

All values in d that match name_re have an errcheck attribute will be replaced by corresponding LoggingWrappers that call logger before each invocation. By default, d is glitter.raw.__dict__.

logger may be either a callable, a logging.logger object, the name of a registered logging.Logger object, or None to remove the logger.

Attention: If you add multiple loggers to a function, you will not only incur a double performance penalty, but also have to remove them in the reverse order; there is no way to remove a specific logger.