home *** CD-ROM | disk | FTP | other *** search
- '''OpenGL extension ARB.window_pos
-
- This module customises the behaviour of the
- OpenGL.raw.GL.ARB.window_pos to provide a more
- Python-friendly API
- '''
- from OpenGL import platform, constants, constant, arrays
- from OpenGL import extensions, wrapper
- from OpenGL.GL import glget
- import ctypes
- from OpenGL.raw.GL.ARB.window_pos import *
- ### END AUTOGENERATED SECTION
- glWindowPos2dvARB = arrays.setInputArraySizeType(
- glWindowPos2dvARB,
- 2,
- arrays.GLdoubleArray,
- 'v',
- )
- glWindowPos2fvARB = arrays.setInputArraySizeType(
- glWindowPos2fvARB,
- 2,
- arrays.GLfloatArray,
- 'v',
- )
- glWindowPos2ivARB = arrays.setInputArraySizeType(
- glWindowPos2ivARB,
- 2,
- arrays.GLintArray,
- 'v',
- )
- glWindowPos2svARB = arrays.setInputArraySizeType(
- glWindowPos2svARB,
- 2,
- arrays.GLshortArray,
- 'v',
- )
- glWindowPos3dvARB = arrays.setInputArraySizeType(
- glWindowPos3dvARB,
- 3,
- arrays.GLdoubleArray,
- 'v',
- )
- glWindowPos3fvARB = arrays.setInputArraySizeType(
- glWindowPos3fvARB,
- 3,
- arrays.GLfloatArray,
- 'v',
- )
- glWindowPos3ivARB = arrays.setInputArraySizeType(
- glWindowPos3ivARB,
- 3,
- arrays.GLintArray,
- 'v',
- )
- glWindowPos3svARB = arrays.setInputArraySizeType(
- glWindowPos3svARB,
- 3,
- arrays.GLshortArray,
- 'v',
- )
-