OpenGL_Clock/Include/shader.h

8 lines
143 B
C

#ifndef SHADER_HPP
#define SHADER_HPP
#define xfree(p) if (p) free((void *)p)
int LoadShaders(GLuint *, const char *, const char *);
#endif