Sha256: 4f65b158b708325823c9192061201d6f4d2af2d4f621bc563ee2ece62ec469b8

Contents?: true

Size: 1.37 KB

Versions: 100

Compression:

Stored size: 1.37 KB

Contents

module Fox
  #
  # FXGLCanvas is an area drawn by another object.
  #
  class FXGLCanvas < FXCanvas
    #
    # Construct an OpenGL-capable canvas, with its own private display list.
    #
    def initialize(parent, vis, target=nil, selector=0, opts=0, x=0, y=0, width=0, height=0) # :yields: theGLCanvas
    end

    #
    # Construct an OpenGL-capable canvas that shares its display
    # list with another GL canvas.  This canvas becomes a member
    # of a display list share group.  All members of the display
    # list share group have to have the same visual.
    #
    def initialize(parent, vis, sharegroup, target=nil, selector=0, opts=0, x=0, y=0, width=0, height=0) # :yields: theGLCanvas
    end

    # Return +true+ if sharing display lists.
    def shared? ; end

    #
    # Return an integer handle to the underlying OpenGL context.
    # On Unix/Linux systems, this is the GLX rendering context
    # returned by a call to glXCreateContext(). On Microsoft Windows
    # systems, it is the value returns by wglCreateContext().
    #
    def context; end

    # Make OpenGL context current prior to performing OpenGL commands
    def makeCurrent(); end

    # Make OpenGL context non-current
    def makeNonCurrent(); end

    # Return +true+ if this canvas' context is the current context.
    def current? ; end

    # Swap front and back buffer
    def swapBuffers(); end
  end
end

Version data entries

100 entries across 100 versions & 1 rubygems

Version Path
fxruby-1.6.43-x64-mingw32 rdoc-sources/FXGLCanvas.rb
fxruby-1.6.43-x86-mingw32 rdoc-sources/FXGLCanvas.rb
fxruby-1.6.42 rdoc-sources/FXGLCanvas.rb
fxruby-1.6.42-x64-mingw32 rdoc-sources/FXGLCanvas.rb
fxruby-1.6.42-x86-mingw32 rdoc-sources/FXGLCanvas.rb
fxruby-1.6.41 rdoc-sources/FXGLCanvas.rb
fxruby-1.6.41-x64-mingw32 rdoc-sources/FXGLCanvas.rb
fxruby-1.6.41-x86-mingw32 rdoc-sources/FXGLCanvas.rb
fxruby-1.6.40-x86-mingw32 rdoc-sources/FXGLCanvas.rb
fxruby-1.6.40-x64-mingw32 rdoc-sources/FXGLCanvas.rb
fxruby-1.6.40 rdoc-sources/FXGLCanvas.rb
fxruby-1.6.39 rdoc-sources/FXGLCanvas.rb
fxruby-1.6.39-x64-mingw32 rdoc-sources/FXGLCanvas.rb
fxruby-1.6.39-x86-mingw32 rdoc-sources/FXGLCanvas.rb
fxruby-1.6.38 rdoc-sources/FXGLCanvas.rb
fxruby-1.6.38-x64-mingw32 rdoc-sources/FXGLCanvas.rb
fxruby-1.6.38-x86-mingw32 rdoc-sources/FXGLCanvas.rb
fxruby-1.6.38.pre1 rdoc-sources/FXGLCanvas.rb
fxruby-1.6.37 rdoc-sources/FXGLCanvas.rb
fxruby-1.6.37-x64-mingw32 rdoc-sources/FXGLCanvas.rb