diff options
| author | Tilka <tilkax@gmail.com> | 2020-01-25 20:28:01 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-25 20:28:01 +0000 |
| commit | b0e040431a633ea3b0486673592e0de753110823 (patch) | |
| tree | 5b2e36a8cc6259de49d28461a00778960f254faa /Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp | |
| parent | 9827aa7a37e444cb359d4db50f5d73cb58eda77c (diff) | |
| parent | b92f6480a0b7517666ad139fc81c89033f84830f (diff) | |
Merge pull request #8581 from jordan-woyak/ciface-ar-aware
InputCommon: Make "Cursor" inputs aware of the rendered aspect ratio.
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp')
| -rw-r--r-- | Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp index 35dfbde0be..130f0f357a 100644 --- a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp +++ b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.cpp @@ -257,6 +257,21 @@ void ControllerInterface::UpdateInput() } } +void ControllerInterface::SetAspectRatioAdjustment(float value) +{ + m_aspect_ratio_adjustment = value; +} + +Common::Vec2 ControllerInterface::GetWindowInputScale() const +{ + const auto ar = m_aspect_ratio_adjustment.load(); + + if (ar > 1) + return {1.f, ar}; + else + return {1 / ar, 1.f}; +} + // Register a callback to be called when a device is added or removed (as from the input backends' // hotplug thread), or when devices are refreshed // Returns a handle for later removing the callback. |
