mirror of https://github.com/AxioDL/boo.git
17 lines
349 B
C++
17 lines
349 B
C++
#ifndef BOO_HPP
|
|
#define BOO_HPP
|
|
|
|
#include "IGraphicsContext.hpp"
|
|
|
|
#if defined(_WIN32)
|
|
#error "No support for WGL"
|
|
#elif defined(__APPLE__)
|
|
#include "mac/CCGLContext.hpp"
|
|
typedef CCGLContext CGraphicsContext;
|
|
#elif defined(__GNUC__) || defined(__clang__)
|
|
#include "x11/CGLXContext.hpp"
|
|
typedef CGLXContext CGraphicsContext;
|
|
#endif
|
|
|
|
#endif // BOO_HPP
|