comparison pytouhou/ui/opengl/renderer.pxd @ 560:c759b97f4f81

Remove all reference to the old fixed pipeline option in the OpenGL backend, use the newer is_legacy one.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Fri, 30 May 2014 16:51:38 +0200
parents 94725968dabb
children 4b0593da29d5
comparison
equal deleted inserted replaced
559:1be60813f7cb 560:c759b97f4f81
31 31
32 # For modern GL. 32 # For modern GL.
33 cdef GLuint vbo, framebuffer_vbo, framebuffer_ibo 33 cdef GLuint vbo, framebuffer_vbo, framebuffer_ibo
34 cdef GLuint vao, framebuffer_vao 34 cdef GLuint vao, framebuffer_vao
35 35
36 cdef bint use_fixed_pipeline #XXX
37
38 cdef GLuint textures[MAX_TEXTURES] 36 cdef GLuint textures[MAX_TEXTURES]
39 cdef unsigned short *indices[MAX_TEXTURES][2] 37 cdef unsigned short *indices[MAX_TEXTURES][2]
40 cdef unsigned short last_indices[2 * MAX_TEXTURES] 38 cdef unsigned short last_indices[2 * MAX_TEXTURES]
41 cdef PyObject *elements[640*3] 39 cdef PyObject *elements[640*3]
42 40