GL.h 168 B

12345678910
  1. #ifndef GL_H
  2. #define GL_H
  3. namespace GL {
  4. bool checkAndPrintError(const char* message);
  5. void disableDepthTesting();
  6. void prepareMainFramebuffer();
  7. }
  8. #endif