2015-04-18 21:45:34 +00:00
|
|
|
#ifndef BOO_HPP
|
|
|
|
#define BOO_HPP
|
|
|
|
|
|
|
|
#if defined(_WIN32)
|
2015-05-02 00:20:30 +00:00
|
|
|
#include "win/CWGLContext.hpp"
|
|
|
|
namespace boo {typedef CWGLContext CGraphicsContext;}
|
2015-04-21 04:02:43 +00:00
|
|
|
|
2015-04-18 21:45:34 +00:00
|
|
|
#elif defined(__APPLE__)
|
2015-04-19 00:37:52 +00:00
|
|
|
#include "mac/CCGLContext.hpp"
|
2015-04-29 10:24:39 +00:00
|
|
|
namespace boo {typedef CCGLContext CGraphicsContext;}
|
2015-04-21 04:02:43 +00:00
|
|
|
|
2015-04-19 00:37:52 +00:00
|
|
|
#elif defined(__GNUC__) || defined(__clang__)
|
|
|
|
#include "x11/CGLXContext.hpp"
|
2015-04-30 07:01:55 +00:00
|
|
|
namespace boo {typedef CGLXContext CGraphicsContext;}
|
2015-04-21 04:02:43 +00:00
|
|
|
|
2015-04-18 21:45:34 +00:00
|
|
|
#endif
|
|
|
|
|
2015-04-21 04:02:43 +00:00
|
|
|
#include "IGraphicsContext.hpp"
|
|
|
|
#include "inputdev/CDeviceFinder.hpp"
|
2015-04-30 07:01:55 +00:00
|
|
|
#include "inputdev/CDolphinSmashAdapter.hpp"
|
2015-04-21 04:02:43 +00:00
|
|
|
|
2015-04-18 21:45:34 +00:00
|
|
|
#endif // BOO_HPP
|