123456789101112131415161718192021222324252627282930313233 |
- #ifndef IGL_OPENGL_LOAD_SHADER_H
- #define IGL_OPENGL_LOAD_SHADER_H
- #include "../igl_inline.h"
- #include "gl.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
|