1234567891011121314151617181920212223242526272829303132333435 |
- #ifndef IGL_OPENGL_DESTROY_SHADER_PROGRAM_H
- #define IGL_OPENGL_DESTROY_SHADER_PROGRAM_H
- #include "../igl_inline.h"
- #include "gl.h"
- namespace igl
- {
- namespace opengl
- {
-
-
-
-
-
-
-
-
-
-
- IGL_INLINE bool destroy_shader_program(const GLuint id);
- }
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "destroy_shader_program.cpp"
- #endif
- #endif
|