Package glitter :: Package contexts
[hide private]
[frames] | no frames]

Source Code for Package glitter.contexts

 1  """OpenGL context implementations for various platforms. 
 2   
 3  @todo: Create a raw offscreen GLX context class with context generation and switching and use it as a default context instead of GLUT. 
 4  @todo: Qt GL widgets and contexts. 
 5   
 6  @author: Stephan Wenger 
 7  @date: 2012-02-29 
 8  """ 
 9   
10  from glitter.contexts import glut 
11  from glitter.contexts.context import * 
12  from glitter.contexts.contextmanager import * 
13