Files
MementoMori/kivy/graphics/opengl_utils_def.pxi
thatscringebro abd15f28b6 Ajout du GUI
2022-08-08 16:31:52 -04:00

18 lines
471 B
Cython

# c definition
cdef int c_GLCAP_BGRA = 0x0001
cdef int c_GLCAP_NPOT = 0x0002
cdef int c_GLCAP_S3TC = 0x0003
cdef int c_GLCAP_DXT1 = 0x0004
cdef int c_GLCAP_PVRTC = 0x0005
cdef int c_GLCAP_ETC1 = 0x0006
cdef int c_GLCAP_UNPACK_SUBIMAGE = 0x0007
# for python export
GLCAP_BGRA = c_GLCAP_NPOT
GLCAP_NPOT = c_GLCAP_NPOT
GLCAP_S3TC = c_GLCAP_S3TC
GLCAP_DXT1 = c_GLCAP_DXT1
GLCAP_PVRTC = c_GLCAP_PVRTC
GLCAP_ETC1 = c_GLCAP_ETC1
GLCAP_UNPACK_SUBIMAGE = c_GLCAP_UNPACK_SUBIMAGE