Mercurial > touhou
view pytouhou/ui/sdl/backend.pyx @ 613:560b45a7d014
Don’t uselessly malloc() a matrix for multiply, the stack is here for that!
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Sat, 28 Mar 2015 19:58:50 +0100 |
parents | 0768122da817 |
children | 80687f258001 |
line wrap: on
line source
from pytouhou.lib cimport sdl from pytouhou.lib.sdl cimport Window GameRenderer = None def init(_): global GameRenderer from pytouhou.ui.sdl.gamerenderer import GameRenderer def create_window(title, x, y, width, height, _): window = Window(title, x, y, width, height, sdl.WINDOW_SHOWN) window.create_renderer(0) return window