view pytouhou/ui/opengl/shader.pxd @ 612:73f134f84c7f

Request a RGB888 context, since SDL2’s default of RGB332 sucks. On X11/GLX, it will select the first config available, that is the best one, while on EGL it will iterate over them to select the one closest to what the application requested. Of course, anything lower than RGB888 looks bad and we really don’t want that.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Thu, 26 Mar 2015 20:20:37 +0100
parents 538b52aafbca
children a6af3ff86612
line wrap: on
line source

from pytouhou.lib.opengl cimport GLuint, GLint, GLchar, GLenum_shader, GLfloat
from pytouhou.utils.matrix cimport Matrix

cdef class Shader:
    cdef GLuint handle
    cdef bint linked
    cdef dict location_cache

    cdef void create_shader(self, const GLchar *string, GLenum_shader shader_type) except *
    cdef void link(self) except *
    cdef GLint get_uniform_location(self, name) except -1
    cdef void bind(self) nogil
    cdef void uniform_1(self, name, GLfloat val) except *
    cdef void uniform_4(self, name, GLfloat a, GLfloat b, GLfloat c, GLfloat d) except *
    cdef void uniform_matrix(self, name, Matrix *mat) except *