diff options
Diffstat (limited to 'test/app.hpp')
-rw-r--r-- | test/app.hpp | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/test/app.hpp b/test/app.hpp index 0822e68f..630acf02 100644 --- a/test/app.hpp +++ b/test/app.hpp @@ -1,19 +1,9 @@ #pragma once #undef FM_NO_DEBUG #include "compat/assert.hpp" +#include "compat/headless.hpp" #include <Magnum/Magnum.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 - namespace floormat { struct chunk_coords; @@ -44,7 +34,6 @@ struct test_app final : private FM_APPLICATION static void test_path_search(); static void test_hash(); static void test_path_search_node_pool(); - static void test_dijkstra(); static void zzz_test_misc(); }; } // namespace floormat |