Mercurial > touhou
view pytouhou/ui/opengl/framebuffer.pxd @ 694:3ff1af76e413
anm0: only use recoverable errors, no panics except for anm0 asserts.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Fri, 23 Aug 2019 02:24:08 +0200 |
parents | a6af3ff86612 |
children |
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 bint render(self, int x, int y, int width, int height) except True