Mercurial > touhou
view pytouhou/ui/opengl/background.pxd @ 513:5e3e0b09a531
Move the OpenGL backend to its own package.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Thu, 05 Dec 2013 02:16:31 +0100 |
parents | pytouhou/ui/background.pxd@feecdb4a8928 |
children | b3193b43a86c |
line wrap: on
line source
from pytouhou.lib.opengl cimport GLuint cdef struct Vertex: float x, y, z float u, v unsigned char r, g, b, a cdef class BackgroundRenderer: cdef GLuint texture cdef unsigned short blendfunc, nb_vertices cdef Vertex *vertex_buffer cdef unsigned int use_fixed_pipeline, vbo cdef object background cdef void render_background(self) except * cdef void load(self, background) except *