mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-01 09:05:03 +00:00
1f74653501
The ability to change the fullscreen resolution througnh the UI was
removed in aa4088a
, leaving this function unused.
13 lines
265 B
C++
13 lines
265 B
C++
// Copyright 2017 Dolphin Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace VideoUtils
|
|
{
|
|
std::vector<std::string> GetAvailableAntialiasingModes(int& m_msaa_modes);
|
|
} // namespace VideoUtils
|