File: tiled_rendering.py

package info (click to toggle)
fs-uae 2.8.4%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 81,392 kB
  • sloc: cpp: 263,062; python: 122,751; ansic: 112,803; sh: 7,747; makefile: 2,095; asm: 275; xml: 10
file content (23 lines) | stat: -rw-r--r-- 780 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
'''OpenGL extension QCOM.tiled_rendering

This module customises the behaviour of the 
OpenGL.raw.GLES1.QCOM.tiled_rendering to provide a more 
Python-friendly API

The official definition of this extension is available here:
http://www.opengl.org/registry/specs/QCOM/tiled_rendering.txt
'''
from OpenGL import platform, constant, arrays
from OpenGL import extensions, wrapper
import ctypes
from OpenGL.raw.GLES1 import _types, _glgets
from OpenGL.raw.GLES1.QCOM.tiled_rendering import *
from OpenGL.raw.GLES1.QCOM.tiled_rendering import _EXTENSION_NAME

def glInitTiledRenderingQCOM():
    '''Return boolean indicating whether this extension is available'''
    from OpenGL import extensions
    return extensions.hasGLExtension( _EXTENSION_NAME )


### END AUTOGENERATED SECTION