Mercurial > touhou
comparison pytouhou/ui/renderer.pyx @ 383:0537af9125a7
Replace wildcard imports with normal ones.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Fri, 07 Sep 2012 13:05:19 +0200 |
parents | 6702bc0215dc |
children | 690b5faaa0e6 |
comparison
equal
deleted
inserted
replaced
382:b9aecdc6f72f | 383:0537af9125a7 |
---|---|
18 | 18 |
19 import ctypes | 19 import ctypes |
20 | 20 |
21 from struct import pack | 21 from struct import pack |
22 | 22 |
23 from pyglet.gl import * | 23 from pyglet.gl import (glVertexPointer, glTexCoordPointer, glColorPointer, |
24 glBlendFunc, glBindTexture, glDrawElements, | |
25 GL_UNSIGNED_BYTE, GL_UNSIGNED_SHORT, GL_INT, GL_FLOAT, | |
26 GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, GL_ONE, | |
27 GL_TEXTURE_2D, GL_TRIANGLES) | |
24 | 28 |
25 from .sprite cimport get_sprite_rendering_data | 29 from .sprite cimport get_sprite_rendering_data |
26 from .texture cimport TextureManager | 30 from .texture cimport TextureManager |
27 from pytouhou.utils.matrix cimport Matrix | 31 from pytouhou.utils.matrix cimport Matrix |
28 from pytouhou.utils.vector import Vector, normalize, cross, dot | 32 from pytouhou.utils.vector import Vector, normalize, cross, dot |