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

Version Path
fxruby-1.2.3 rdoc-sources/FXGLContext.rb
fxruby-1.2.2 rdoc-sources/FXGLContext.rb
fxruby-1.2.4 rdoc-sources/FXGLContext.rb
fxruby-1.2.5 rdoc-sources/FXGLContext.rb
fxruby-1.2.6 rdoc-sources/FXGLContext.rb
fxruby-1.4.0 rdoc-sources/FXGLContext.rb
fxruby-1.4.2 rdoc-sources/FXGLContext.rb
fxruby-1.4.1 rdoc-sources/FXGLContext.rb
fxruby-1.4.3 rdoc-sources/FXGLContext.rb
fxruby-1.4.4 rdoc-sources/FXGLContext.rb
fxruby-1.4.5 rdoc-sources/FXGLContext.rb
fxruby-1.4.6 rdoc-sources/FXGLContext.rb
fxruby-1.4.7 rdoc-sources/FXGLContext.rb
fxruby-1.6.0 rdoc-sources/FXGLContext.rb
fxruby-1.6.1 rdoc-sources/FXGLContext.rb
fxruby-1.6.2 rdoc-sources/FXGLContext.rb