print_shader_info_log.h 386 B

1234567891011121314151617181920
  1. #ifndef IGL_PRINT_SHADER_INFO_LOG_H
  2. #define IGL_PRINT_SHADER_INFO_LOG_H
  3. #ifndef IGL_NO_OPENGL
  4. #include "igl_inline.h"
  5. #include "OpenGL_convenience.h"
  6. namespace igl
  7. {
  8. // Inputs:
  9. // obj OpenGL index of shader to print info log about
  10. IGL_INLINE void print_shader_info_log(const GLuint obj);
  11. }
  12. #ifdef IGL_HEADER_ONLY
  13. # include "print_shader_info_log.cpp"
  14. #endif
  15. #endif
  16. #endif