GSDx: Just slapping some consts on methods I needed to use with const references in testing.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@5342 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
sudonim1@gmail.com 2012-07-21 03:45:40 +00:00
parent 546adf52c9
commit 1f8c4ddc22
1 changed files with 6 additions and 6 deletions

View File

@ -766,9 +766,9 @@ REG64_(GIFReg, TEST)
uint32 _PAD1:13; uint32 _PAD1:13;
uint32 _PAD2:32; uint32 _PAD2:32;
REG_END2 REG_END2
__forceinline bool DoFirstPass() {return !ATE || ATST != ATST_NEVER;} // not all pixels fail automatically __forceinline bool DoFirstPass() const {return !ATE || ATST != ATST_NEVER;} // not all pixels fail automatically
__forceinline bool DoSecondPass() {return ATE && ATST != ATST_ALWAYS && AFAIL != AFAIL_KEEP;} // pixels may fail, write fb/z __forceinline bool DoSecondPass() const {return ATE && ATST != ATST_ALWAYS && AFAIL != AFAIL_KEEP;} // pixels may fail, write fb/z
__forceinline bool NoSecondPass() {return ATE && ATST != ATST_ALWAYS && AFAIL == AFAIL_KEEP;} // pixels may fail, no output __forceinline bool NoSecondPass() const {return ATE && ATST != ATST_ALWAYS && AFAIL == AFAIL_KEEP;} // pixels may fail, no output
REG_END2 REG_END2
REG64_(GIFReg, TEX0) REG64_(GIFReg, TEX0)
@ -799,7 +799,7 @@ union
}; };
}; };
REG_END2 REG_END2
__forceinline bool IsRepeating() __forceinline bool IsRepeating() const
{ {
if(TBW < 2) if(TBW < 2)
{ {
@ -1150,12 +1150,12 @@ __aligned(struct, 32) GIFPath
} }
} }
__forceinline uint8 GetReg() __forceinline uint8 GetReg() const
{ {
return regs.u8[reg]; return regs.u8[reg];
} }
__forceinline uint8 GetReg(uint32 index) __forceinline uint8 GetReg(uint32 index) const
{ {
return regs.u8[index]; return regs.u8[index];
} }