Sha256: b3c455f20cbee18a0c8705485d779ddc90a46fcdb1de63fa610c764f3f17434d
Contents?: true
Size: 1.33 KB
Versions: 16
Compression:
Stored size: 1.33 KB
Contents
module Fox # # A GL context is an object representing the OpenGL state information. # Multiple GL context may share display lists to conserve memory. # When drawing multiple windows, it may be advantageous to share not only # display lists, but also GL contexts. Since the GL context is created # for a certain frame-buffer configuration, sharing of GL contexts is # only possible if the windows sharing the GL context all have the same # GL visual. # However, display lists may be shared between different GL contexts. # class FXGLContext < FXId # The visual [FXGLVisual] attr_reader :visual # Construct an OpenGL context with its own private display list. def initialize(anApp, aVisual) # :yields: theGLContext end # Construct an OpenGL context sharing display lists with an existing GL context. def initialize(anApp, aVisual, aContext) # :yields: theGLContext end # Return +true+ if it is sharing display lists. def shared?; end # Make this OpenGL context current prior to performing OpenGL commands. def begin(drawable); end # Make this OpenGL context non-current. def end(); end # Swap front and back buffer def swapBuffers(); end # Copy part of backbuffer to front buffer [Mesa] def swapSubBuffers(x, y, w, h); end end end
Version data entries
16 entries across 16 versions & 1 rubygems