mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 21:28:51 +00:00
Cleanup Renderer::CalculateTargetSize(), and allow IRs higher than 4x to be set via ini.
This commit is contained in:
parent
0a1855d2ca
commit
4fe1119e52
7 changed files with 65 additions and 43 deletions
|
@ -1370,4 +1370,9 @@ void Renderer::SetInterlacingMode()
|
|||
// TODO
|
||||
}
|
||||
|
||||
int Renderer::GetMaxTextureSize()
|
||||
{
|
||||
return DX11::D3D::GetMaxTextureSize();
|
||||
}
|
||||
|
||||
} // namespace DX11
|
||||
|
|
|
@ -49,6 +49,8 @@ public:
|
|||
bool SaveScreenshot(const std::string &filename, const TargetRectangle &rc) override;
|
||||
|
||||
static bool CheckForResize();
|
||||
|
||||
int GetMaxTextureSize() override;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue