1234567891011121314151617181920212223242526272829303132333435363738 |
- #ifndef IGL_OPENGL_COMPILE_SHADER_H
- #define IGL_OPENGL_COMPILE_SHADER_H
- #include "OpenGL_convenience.h"
- #include "../igl_inline.h"
- namespace igl
- {
- namespace opengl
- {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- IGL_INLINE GLuint compile_shader(const GLint type, const char * str);
- }
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "compile_shader.cpp"
- #endif
- #endif
|