mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 04:38:49 +00:00
RenderBase: Return a tuple from CalculateTargetScale instead of using out parameters
This commit is contained in:
parent
9d070a5df7
commit
671b5f9747
2 changed files with 27 additions and 24 deletions
|
@ -144,7 +144,7 @@ public:
|
|||
bool UseVertexDepthRange() const;
|
||||
|
||||
protected:
|
||||
void CalculateTargetScale(int x, int y, int* scaledX, int* scaledY) const;
|
||||
std::tuple<int, int> CalculateTargetScale(int x, int y) const;
|
||||
bool CalculateTargetSize();
|
||||
|
||||
void CheckFifoRecording();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue