~matobet/pyopengl/Python3

« back to all changes in this revision

Viewing changes to 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
This module customises the behaviour of the 
 
4
OpenGL.raw.GL.EXT.framebuffer_blit to provide a more 
 
5
Python-friendly API
 
6
 
 
7
Overview (from the spec)
 
8
        
 
9
        This extension modifies EXT_framebuffer_object by splitting the
 
10
        framebuffer object binding point into separate DRAW and READ
 
11
        bindings.  This allows copying directly from one framebuffer to
 
12
        another.  In addition, a new high performance blit function is
 
13
        added to facilitate these blits and perform some data conversion
 
14
        where allowed.
 
15
 
 
16
The official definition of this extension is available here:
 
17
http://www.opengl.org/registry/specs/EXT/framebuffer_blit.txt
 
18
'''
 
19
from OpenGL import platform, constants, constant, arrays
 
20
from OpenGL import extensions, wrapper
 
21
from OpenGL.GL import glget
 
22
import ctypes
 
23
from OpenGL.raw.GL.EXT.framebuffer_blit import *
 
24
### END AUTOGENERATED SECTION
 
 
b'\\ No newline at end of file'