Mercurial > touhou
view pytouhou/ui/background.pxd @ 468:feecdb4a8928
Add “except *” to cdef void functions, and type some more.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Thu, 12 Sep 2013 15:47:08 +0200 |
parents | 6e733ed817bd |
children |
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 *