~matobet/pyopengl/Python3

« back to all changes in this revision

Viewing changes to raw/GL/SGIX/igloo_interface.py

  • Committer: matobet at gmail
  • Date: 2010-06-26 14:11:04 UTC
  • Revision ID: matobet@gmail.com-20100626141104-k011ofmltgiiu60g
Initial

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
'''OpenGL extension SGIX.igloo_interface
 
2
 
 
3
Automatically generated by the get_gl_extensions script, do not edit!
 
4
'''
 
5
from OpenGL import platform, constants, constant, arrays
 
6
from OpenGL import extensions
 
7
from OpenGL.GL import glget
 
8
import ctypes
 
9
EXTENSION_NAME = 'GL_SGIX_igloo_interface'
 
10
_DEPRECATED = False
 
11
 
 
12
glIglooInterfaceSGIX = platform.createExtensionFunction( 
 
13
'glIglooInterfaceSGIX',dll=platform.GL,
 
14
extension=EXTENSION_NAME,
 
15
resultType=None, 
 
16
argTypes=(constants.GLenum,ctypes.c_void_p,),
 
17
doc='glIglooInterfaceSGIX(GLenum(pname), c_void_p(params)) -> None',
 
18
argNames=('pname','params',),
 
19
deprecated=_DEPRECATED,
 
20
)
 
21
 
 
22
 
 
23
def glInitIglooInterfaceSGIX():
 
24
    '''Return boolean indicating whether this extension is available'''
 
25
    return extensions.hasGLExtension( EXTENSION_NAME )