Mercurial > touhou
view pytouhou/ui/opengl/framebuffer.pxd @ 614:2cf518129725
Delay power assignment to players until the game is started.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Sat, 28 Mar 2015 21:02:05 +0100 |
parents | 1b31169dc344 |
children | a6af3ff86612 |
line wrap: on
line source
from pytouhou.lib.opengl cimport GLuint from pytouhou.utils.matrix cimport Matrix from .shader cimport Shader cdef struct PassthroughVertex: short x, y float u, v cdef class Framebuffer: cdef GLuint fbo, texture, rbo # Used by the use_framebuffer_blit path cdef int x, y, width, height # Used by the other one. cdef GLuint vbo, vao cdef Shader shader cdef Matrix *mvp cdef PassthroughVertex[4] buf cpdef bind(self) cdef void set_state(self) nogil cdef void render(self, int x, int y, int width, int height) except *