GSDX: Clean up warnings on MSVC

* Explicitly cast w_pages and h_pages into uint32.
* Prevent signed/unsigned comparison by converting lod into unsigned integer, honestly how coud a mipmapping level be negative?
This commit is contained in:
Akash 2016-11-04 23:42:12 +05:30 committed by Gregory Hainaut
parent ae57b960c2
commit 58ed49f3c9
3 changed files with 4 additions and 4 deletions

View File

@ -920,8 +920,8 @@ void GSRendererHW::OI_DoubleHalfClear(GSTexture* rt, GSTexture* ds)
// return;
// Size of the current draw
uint32 w_pages = roundf(m_vt.m_max.p.x / frame_psm.pgs.x);
uint32 h_pages = roundf(m_vt.m_max.p.y / frame_psm.pgs.y);
uint32 w_pages = static_cast<uint32>(roundf(m_vt.m_max.p.x / frame_psm.pgs.x));
uint32 h_pages = static_cast<uint32>(roundf(m_vt.m_max.p.y / frame_psm.pgs.y));
uint32 written_pages = w_pages * h_pages;
// Frame and depth pointer can be inverted

View File

@ -3200,7 +3200,7 @@ bool GSState::IsMipMapActive()
return m_mipmap && IsMipMapDraw();
}
GIFRegTEX0 GSState::GetTex0Layer(int lod)
GIFRegTEX0 GSState::GetTex0Layer(uint32 lod)
{
// Shortcut
if (lod == 0) {

View File

@ -206,7 +206,7 @@ protected:
bool IsOpaque();
bool IsMipMapDraw();
bool IsMipMapActive();
GIFRegTEX0 GetTex0Layer(int lod);
GIFRegTEX0 GetTex0Layer(uint32 lod);
public:
GIFPath m_path[4];