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 / EXT / misc_attribute.py < prev    next >
Encoding:
Python Source  |  2008-12-07  |  826 b   |  26 lines

  1. '''OpenGL extension EXT.misc_attribute
  2.  
  3. Overview (from the spec)
  4.     
  5.     EXT_misc_attribute extends the list of attribute groups. It provides
  6.     a miscellaneous group, controlled by the MISC_BIT_EXT bit, that contains
  7.     the attribute state of extensions that don't logically fit in any other
  8.     group. 
  9.  
  10. The official definition of this extension is available here:
  11.     http://oss.sgi.com/projects/ogl-sample/registry/EXT/misc_attribute.txt
  12.  
  13. Automatically generated by the get_gl_extensions script, do not edit!
  14. '''
  15. from OpenGL import platform, constants, constant, arrays
  16. from OpenGL import extensions
  17. from OpenGL.GL import glget
  18. import ctypes
  19. EXTENSION_NAME = 'GL_EXT_misc_attribute'
  20.  
  21.  
  22.  
  23. def glInitMiscAttributeEXT():
  24.     '''Return boolean indicating whether this extension is available'''
  25.     return extensions.hasGLExtension( EXTENSION_NAME )
  26.