Mercurial > touhou
view pytouhou/ui/sdl/texture.pxd @ 524:7f016dfbdfb1
Make vector a struct, allocate it directly on the stack, and thus pass it by copy, which is much less expensive than a python allocation.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Wed, 18 Dec 2013 18:15:40 +0100 |
parents | b39ad30c6620 |
children | b895ed2de71f |
line wrap: on
line source
#from pytouhou.lib.sdl cimport Font from pytouhou.lib.sdl cimport Surface, Window cdef class TextureManager: cdef object loader cdef Window window cdef void load(self, dict anms) except * cdef load_texture(self, Surface texture) #cdef class FontManager: # cdef Font font # cdef object renderer, texture_class # # cdef load(self, list labels)