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

@@ -2,7 +2,7 @@
// This file is part of the "Nazara Engine - Utility module"
// For conditions of distribution and use, see copyright notice in Config.hpp
#include <Nazara/Utility/VideoModeImpl.hpp>
#include <Nazara/Utility/Win32/VideoModeImpl.hpp>
#include <Nazara/Utility/VideoMode.hpp>
#include <algorithm>
#include <windows.h>

View File

@@ -0,0 +1,19 @@
// Copyright (C) 2015 Jérôme Leclercq
// This file is part of the "Nazara Engine - Utility module"
// For conditions of distribution and use, see copyright notice in Config.hpp
#pragma once
#ifndef NAZARA_VIDEOMODEIMPL_HPP
#define NAZARA_VIDEOMODEIMPL_HPP
#include <Nazara/Utility/VideoMode.hpp>
class NzVideoModeImpl
{
public:
static NzVideoMode GetDesktopMode();
static void GetFullscreenModes(std::vector<NzVideoMode>& modes);
};
#endif // NNAZARA_VIDEOMODEIMPL_HPP