comparison pytouhou/ui/renderer.pyx @ 223:98c64ffcbdff

Make pytouhou.ui.{background,texture} Cython modules as they are only used by Cython modules.
author Thibaut Girka <thib@sitedethib.com>
date Sun, 18 Dec 2011 21:23:51 +0100
parents 5cac48b328ad
children d3ba32a9096e
comparison
equal deleted inserted replaced
222:5cac48b328ad 223:98c64ffcbdff
19 from struct import pack 19 from struct import pack
20 20
21 from pyglet.gl import * 21 from pyglet.gl import *
22 22
23 from .sprite cimport get_sprite_rendering_data 23 from .sprite cimport get_sprite_rendering_data
24 from .texture import TextureManager 24 from .texture cimport TextureManager
25 25
26 26
27 MAX_ELEMENTS = 10000 27 MAX_ELEMENTS = 10000
28 28
29 29