2015-04-24 08:48:45 +03:00
|
|
|
#ifdef CONFIG_OPENGL
|
|
|
|
# include <GLES2/gl2.h>
|
|
|
|
# include <GLES2/gl2ext.h>
|
|
|
|
#endif
|
|
|
|
|
2015-01-09 13:40:23 +03:00
|
|
|
void qemu_gl_run_texture_blit(GLint texture_blit_prog);
|
|
|
|
|
2015-04-24 08:48:45 +03:00
|
|
|
GLuint qemu_gl_create_compile_shader(GLenum type, const GLchar *src);
|
|
|
|
GLuint qemu_gl_create_link_program(GLuint vert, GLuint frag);
|
|
|
|
GLuint qemu_gl_create_compile_link_program(const GLchar *vert_src,
|
|
|
|
const GLchar *frag_src);
|