# File lib/as_main.rb, line 61
  def self.print_gl_errors
    until((error = GL.GetError) == 0)
      puts GLU.ErrorString(error)
    end
  end