mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-19 08:50:48 +00:00
UICommon: Move Wx Graphics Settings functions
This commit is contained in:
parent
e14a82a87e
commit
7c97c14eba
4 changed files with 112 additions and 64 deletions
22
Source/Core/UICommon/VideoUtils.h
Normal file
22
Source/Core/UICommon/VideoUtils.h
Normal file
|
@ -0,0 +1,22 @@
|
|||
// Copyright 2017 Dolphin Emulator Project
|
||||
// Licensed under GPLv2+
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
namespace X11Utils
|
||||
{
|
||||
class XRRConfiguration;
|
||||
}
|
||||
|
||||
namespace VideoUtils
|
||||
{
|
||||
#if !defined(__APPLE__)
|
||||
std::vector<std::string> GetAvailableResolutions(X11Utils::XRRConfiguration* xrr_config);
|
||||
#endif
|
||||
|
||||
std::vector<std::string> GetAvailableAntialiasingModes(int& m_msaa_modes);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue