mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-11 16:49:28 +02:00
InputCommon: Move DynamicInputTextureData to DynamicInputTextures::Data
This commit is contained in:
28
Source/Core/InputCommon/DynamicInputTextures/DITData.h
Normal file
28
Source/Core/InputCommon/DynamicInputTextures/DITData.h
Normal 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
|
Reference in New Issue
Block a user