1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
'''Autogenerated by xml_generate script, do not edit!'''
from OpenGL import platform as _p, arrays
# Code generation uses this
from OpenGL.raw.GLES1 import _types as _cs
# End users want this...
from OpenGL.raw.GLES1._types import *
from OpenGL.raw.GLES1 import _errors
from OpenGL.constant import Constant as _C
import ctypes
_EXTENSION_NAME = 'GLES1_IMG_user_clip_plane'
def _f( function ):
return _p.createFunction( function,_p.PLATFORM.GLES1,'GLES1_IMG_user_clip_plane',error_checker=_errors._error_checker)
GL_CLIP_PLANE0_IMG=_C('GL_CLIP_PLANE0_IMG',0x3000)
GL_CLIP_PLANE1_IMG=_C('GL_CLIP_PLANE1_IMG',0x3001)
GL_CLIP_PLANE2_IMG=_C('GL_CLIP_PLANE2_IMG',0x3002)
GL_CLIP_PLANE3_IMG=_C('GL_CLIP_PLANE3_IMG',0x3003)
GL_CLIP_PLANE4_IMG=_C('GL_CLIP_PLANE4_IMG',0x3004)
GL_CLIP_PLANE5_IMG=_C('GL_CLIP_PLANE5_IMG',0x3005)
GL_MAX_CLIP_PLANES_IMG=_C('GL_MAX_CLIP_PLANES_IMG',0x0D32)
@_f
@_p.types(None,_cs.GLenum,arrays.GLfloatArray)
def glClipPlanefIMG(p,eqn):pass
@_f
@_p.types(None,_cs.GLenum,arrays.GLfixedArray)
def glClipPlanexIMG(p,eqn):pass
|