GLWrapper.h 311 B

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