home *** CD-ROM | disk | FTP | other *** search
/ Hackers Magazine 57 / CdHackersMagazineNr57.iso / Software / Multimedia / k3d-setup-0.7.11.0.exe / lib / site-packages / OpenGL / raw / GL / SGIX / ir_instrument1.py < prev    next >
Encoding:
Python Source  |  2008-12-07  |  681 b   |  22 lines

  1. '''OpenGL extension SGIX.ir_instrument1
  2.  
  3. Overview (from the spec)
  4.  
  5.  
  6. The official definition of this extension is available here:
  7.     http://oss.sgi.com/projects/ogl-sample/registry/SGIX/ir_instrument1.txt
  8.  
  9. Automatically generated by the get_gl_extensions script, do not edit!
  10. '''
  11. from OpenGL import platform, constants, constant, arrays
  12. from OpenGL import extensions
  13. from OpenGL.GL import glget
  14. import ctypes
  15. EXTENSION_NAME = 'GL_SGIX_ir_instrument1'
  16. GL_IR_INSTRUMENT1_SGIX = constant.Constant( 'GL_IR_INSTRUMENT1_SGIX', 0x817F )
  17.  
  18.  
  19. def glInitIrInstrument1SGIX():
  20.     '''Return boolean indicating whether this extension is available'''
  21.     return extensions.hasGLExtension( EXTENSION_NAME )
  22.