11 lines
199 B
C
11 lines
199 B
C
#ifndef H_SHADER_
|
|
#define H_SHADER_
|
|
|
|
#include <GLES2/gl2.h>
|
|
|
|
GLuint compile_shader(GLenum type, const char *src);
|
|
|
|
GLuint create_program(const char *vs_src, const char *fs_src);
|
|
|
|
#endif // H_SHADER_
|