Mercurial > touhou
view pytouhou/ui/background.pxd @ 453:17a7f3b028f3
Raise an exception if GL context creation fails instead of failing silently.
author | Thibaut Girka <thib@sitedethib.com> |
---|---|
date | Fri, 30 Aug 2013 23:32:36 +0200 |
parents | 5d7bb2fd74f7 |
children | 6e733ed817bd |
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 cpdef render_background(self) cpdef prerender(self, background)