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 / MESA / pack_invert.py < prev    next >
Encoding:
Python Source  |  2008-12-07  |  1.3 KB  |  34 lines

  1. '''OpenGL extension MESA.pack_invert
  2.  
  3. Overview (from the spec)
  4.     
  5.     This extension adds a new pixel storage parameter to indicate that
  6.     images are to be packed in top-to-bottom order instead of OpenGL's
  7.     conventional bottom-to-top order.  Only pixel packing can be
  8.     inverted (i.e. for glReadPixels, glGetTexImage, glGetConvolutionFilter,
  9.     etc).
  10.     
  11.     Almost all known image file formats store images in top-to-bottom
  12.     order.  As it is, OpenGL reads images from the frame buffer in
  13.     bottom-to-top order.  Thus, images usually have to be inverted before
  14.     writing them to a file with image I/O libraries.  This extension
  15.     allows images to be read such that inverting isn't needed.
  16.  
  17. The official definition of this extension is available here:
  18.     http://oss.sgi.com/projects/ogl-sample/registry/MESA/pack_invert.txt
  19.  
  20. Automatically generated by the get_gl_extensions script, do not edit!
  21. '''
  22. from OpenGL import platform, constants, constant, arrays
  23. from OpenGL import extensions
  24. from OpenGL.GL import glget
  25. import ctypes
  26. EXTENSION_NAME = 'GL_MESA_pack_invert'
  27. GL_PACK_INVERT_MESA = constant.Constant( 'GL_PACK_INVERT_MESA', 0x8758 )
  28. glget.addGLGetConstant( GL_PACK_INVERT_MESA, (1,) )
  29.  
  30.  
  31. def glInitPackInvertMESA():
  32.     '''Return boolean indicating whether this extension is available'''
  33.     return extensions.hasGLExtension( EXTENSION_NAME )
  34.