12345678910111213141516171819202122232425262728293031323334 |
- #ifndef IGL_OPENGL_LOAD_SHADER_H
- #define IGL_OPENGL_LOAD_SHADER_H
- #include "../igl_inline.h"
- #include "OpenGL_convenience.h"
- namespace igl
- {
- namespace opengl
- {
-
-
-
-
-
-
-
-
- IGL_INLINE GLuint load_shader(const char *src,const GLenum type);
- }
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "load_shader.cpp"
- #endif
- #endif
|