First xcb implementation

Former-commit-id: 483522109b8b63fa80b9152b04bca79a65809d4d
This commit is contained in:
Youri Hubaut
2015-09-19 17:20:01 +02:00
parent 438e45c08e
commit e8cc3e357e
24 changed files with 3272 additions and 13 deletions

View File

@@ -3,9 +3,17 @@
// For conditions of distribution and use, see copyright notice in Config.hpp
#include <Nazara/Utility/VideoMode.hpp>
#include <Nazara/Utility/VideoModeImpl.hpp>
#include <algorithm>
#include <functional>
#if defined(NAZARA_PLATFORM_WINDOWS)
#include <Nazara/Utility/Win32/VideoModeImpl.hpp>
#elif defined(NAZARA_PLATFORM_X11)
#include <Nazara/Utility/X11/VideoModeImpl.hpp>
#else
#error Lack of implementation: Window
#endif
#include <Nazara/Utility/Debug.hpp>
NzVideoMode::NzVideoMode() :