diff options
Diffstat (limited to 'test/app.hpp')
-rw-r--r-- | test/app.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/app.hpp b/test/app.hpp index c9bcfcee..26a0e41a 100644 --- a/test/app.hpp +++ b/test/app.hpp @@ -1,12 +1,14 @@ #pragma once #include <Magnum/Magnum.h> -#include <Magnum/Platform/WindowlessWglApplication.h> #ifdef __APPLE__ +#include <Magnum/Platform/WindowlessCglApplication.h> #define FM_APPLICATION Platform::WindowlessCglApplication #elif defined _WIN32 +#include <Magnum/Platform/WindowlessWglApplication.h> #define FM_APPLICATION Platform::WindowlessWglApplication #else +#include <Magnum/Platform/WindowlessGlxApplication.h> #define FM_APPLICATION Platform::WindowlessGlxApplication #endif |