Method: GLApp#show

Defined in:
lib/glapp.rb

#show(width, height, title = "glapp", fullscreen = false) ⇒ Object



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'lib/glapp.rb', line 7

def show(width, height, title = "glapp", fullscreen = false)
  glutInit
  glutInitDisplayMode(GLUT_RGBA | GLUT_DOUBLE | GLUT_DEPTH)
  
  @width = width
  @height = height
  @title = title
  
  fullscreen ? go_fullscreen : go_windowed
  setup
  
  setup_context
  wire
  glutMainLoop
end