1
0
mirror of https://github.com/danog/Telegram.git synced 2025-01-05 20:48:36 +01:00
Telegram/thirdparty/RMIntro/core/shader.h
2014-07-10 18:11:09 +04:00

11 lines
506 B
C
Executable File

#include "platform_gl.h"
GLuint compile_shader(const GLenum type, const GLchar* source, const GLint length);
GLuint link_program(const GLuint vertex_shader, const GLuint fragment_shader);
GLuint build_program(
const GLchar * vertex_shader_source, const GLint vertex_shader_source_length,
const GLchar * fragment_shader_source, const GLint fragment_shader_source_length);
/* Should be called just before using a program to draw, if validation is needed. */
GLint validate_program(const GLuint program);