2017-06-15 23:37:39 +00:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2017-06-15 23:37:39 +00:00
|
|
|
|
|
|
|
#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);
|
2019-05-05 23:48:12 +00:00
|
|
|
} // namespace VideoUtils
|