mirror of https://github.com/PCSX2/pcsx2.git
gs: remove unused tex flush param
keep the logging for now
This commit is contained in:
parent
8095490d23
commit
936cf5b60d
|
@ -29,7 +29,6 @@ GSState::GSState()
|
|||
, m_skip(0)
|
||||
, m_skip_offset(0)
|
||||
, m_q(1.0f)
|
||||
, m_texflush(true)
|
||||
, m_vt(this)
|
||||
, m_regs(NULL)
|
||||
, m_crc(0)
|
||||
|
@ -220,8 +219,6 @@ void GSState::Reset()
|
|||
m_vertex.tail = 0;
|
||||
m_vertex.next = 0;
|
||||
m_index.tail = 0;
|
||||
|
||||
m_texflush = true;
|
||||
}
|
||||
|
||||
void GSState::ResetHandlers()
|
||||
|
@ -1122,8 +1119,6 @@ void GSState::GIFRegHandlerFOGCOL(const GIFReg* RESTRICT r)
|
|||
void GSState::GIFRegHandlerTEXFLUSH(const GIFReg* RESTRICT r)
|
||||
{
|
||||
GL_REG("TEXFLUSH = 0x%x_%x", r->u32[1], r->u32[0]);
|
||||
|
||||
m_texflush = true;
|
||||
}
|
||||
|
||||
template <int i>
|
||||
|
|
|
@ -158,7 +158,6 @@ protected:
|
|||
float m_q;
|
||||
GSVector4i m_scissor;
|
||||
GSVector4i m_ofxy;
|
||||
bool m_texflush;
|
||||
|
||||
struct
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue