InputCommon: Move DynamicInputTextureData to DynamicInputTextures::Data

This commit is contained in:
iwubcode
2021-02-14 21:20:47 -06:00
parent 28a911ae6b
commit 10127a0451
5 changed files with 35 additions and 19 deletions

View File

@ -0,0 +1,28 @@
// Copyright 2021 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include <string>
#include <unordered_map>
#include <vector>
#include "InputCommon/ImageOperations.h"
namespace InputCommon::DynamicInputTextures
{
struct Data
{
std::string m_image_name;
std::string m_hires_texture_name;
std::string m_generated_folder_name;
using EmulatedKeyToRegionsMap = std::unordered_map<std::string, std::vector<Rect>>;
std::unordered_map<std::string, EmulatedKeyToRegionsMap> m_emulated_controllers;
using HostKeyToImagePath = std::unordered_map<std::string, std::string>;
std::unordered_map<std::string, HostKeyToImagePath> m_host_devices;
bool m_preserve_aspect_ratio = true;
};
} // namespace InputCommon::DynamicInputTextures