~matobet/pyopengl/Python3

« back to all changes in this revision

Viewing changes to raw/GL/EXT/framebuffer_blit.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 EXT.framebuffer_blit
 
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_EXT_framebuffer_blit'
 
10
_DEPRECATED = False
 
11
GL_READ_FRAMEBUFFER_EXT = constant.Constant( 'GL_READ_FRAMEBUFFER_EXT', 0x8CA8 )
 
12
GL_DRAW_FRAMEBUFFER_EXT = constant.Constant( 'GL_DRAW_FRAMEBUFFER_EXT', 0x8CA9 )
 
13
GL_READ_FRAMEBUFFER_BINDING_EXT = constant.Constant( 'GL_READ_FRAMEBUFFER_BINDING_EXT', 0x8CAA )
 
14
glBlitFramebufferEXT = platform.createExtensionFunction( 
 
15
'glBlitFramebufferEXT',dll=platform.GL,
 
16
extension=EXTENSION_NAME,
 
17
resultType=None, 
 
18
argTypes=(constants.GLint,constants.GLint,constants.GLint,constants.GLint,constants.GLint,constants.GLint,constants.GLint,constants.GLint,constants.GLbitfield,constants.GLenum,),
 
19
doc='glBlitFramebufferEXT(GLint(srcX0), GLint(srcY0), GLint(srcX1), GLint(srcY1), GLint(dstX0), GLint(dstY0), GLint(dstX1), GLint(dstY1), GLbitfield(mask), GLenum(filter)) -> None',
 
20
argNames=('srcX0','srcY0','srcX1','srcY1','dstX0','dstY0','dstX1','dstY1','mask','filter',),
 
21
deprecated=_DEPRECATED,
 
22
)
 
23
 
 
24
 
 
25
def glInitFramebufferBlitEXT():
 
26
    '''Return boolean indicating whether this extension is available'''
 
27
    return extensions.hasGLExtension( EXTENSION_NAME )