GL.h 255 B

1234567891011121314
  1. #ifndef GL_H
  2. #define GL_H
  3. namespace GL {
  4. bool checkAndPrintError(const char* message);
  5. void enableDepthTesting();
  6. void disableDepthTesting();
  7. void prepareMainFramebuffer();
  8. void enableBlending();
  9. void disableBlending();
  10. }
  11. #endif