VideoCommon: Minor changes

Make Renderer::GetMaxTextureSize return u32 instead of int.
This commit is contained in:
Shawn Hoffman
2016-10-03 06:51:46 -07:00
parent cc66f0336f
commit 86112c7258
11 changed files with 14 additions and 15 deletions

View File

@ -1287,7 +1287,7 @@ void Renderer::SetInterlacingMode()
// EXISTINGD3D11TODO
}
int Renderer::GetMaxTextureSize()
u32 Renderer::GetMaxTextureSize()
{
return DX12::D3D::GetMaxTextureSize();
}

View File

@ -58,7 +58,7 @@ public:
static bool CheckForResize();
int GetMaxTextureSize() override;
u32 GetMaxTextureSize() override;
static D3D12_BLEND_DESC GetResetBlendDesc();
static D3D12_DEPTH_STENCIL_DESC GetResetDepthStencilDesc();