gs: remove unused tex flush param

keep the logging for now
This commit is contained in:
kojin 2021-10-20 18:38:00 -04:00 committed by lightningterror
parent 8095490d23
commit 936cf5b60d
2 changed files with 0 additions and 6 deletions

View File

@ -29,7 +29,6 @@ GSState::GSState()
, m_skip(0) , m_skip(0)
, m_skip_offset(0) , m_skip_offset(0)
, m_q(1.0f) , m_q(1.0f)
, m_texflush(true)
, m_vt(this) , m_vt(this)
, m_regs(NULL) , m_regs(NULL)
, m_crc(0) , m_crc(0)
@ -220,8 +219,6 @@ void GSState::Reset()
m_vertex.tail = 0; m_vertex.tail = 0;
m_vertex.next = 0; m_vertex.next = 0;
m_index.tail = 0; m_index.tail = 0;
m_texflush = true;
} }
void GSState::ResetHandlers() void GSState::ResetHandlers()
@ -1122,8 +1119,6 @@ void GSState::GIFRegHandlerFOGCOL(const GIFReg* RESTRICT r)
void GSState::GIFRegHandlerTEXFLUSH(const GIFReg* RESTRICT r) void GSState::GIFRegHandlerTEXFLUSH(const GIFReg* RESTRICT r)
{ {
GL_REG("TEXFLUSH = 0x%x_%x", r->u32[1], r->u32[0]); GL_REG("TEXFLUSH = 0x%x_%x", r->u32[1], r->u32[0]);
m_texflush = true;
} }
template <int i> template <int i>

View File

@ -158,7 +158,6 @@ protected:
float m_q; float m_q;
GSVector4i m_scissor; GSVector4i m_scissor;
GSVector4i m_ofxy; GSVector4i m_ofxy;
bool m_texflush;
struct struct
{ {