gsdx: disable dump in release build

This commit is contained in:
Gregory Hainaut 2016-03-31 09:50:06 +02:00
parent 16ef7ca5fd
commit cc1756b8e5
1 changed files with 8 additions and 6 deletions

View File

@ -169,6 +169,7 @@ GSTexture* GSRendererHW::GetOutput(int i)
{ {
t = rt->m_texture; t = rt->m_texture;
#ifndef NDEBUG
if(s_dump) if(s_dump)
{ {
if(s_savef && s_n >= s_saven) if(s_savef && s_n >= s_saven)
@ -177,7 +178,8 @@ GSTexture* GSRendererHW::GetOutput(int i)
} }
} }
s_n++; // Alaways increment it s_n++;
#endif
} }
return t; return t;
@ -424,6 +426,7 @@ void GSRendererHW::Draw()
rt->m_32_bits_fmt = m_texture_shuffle || !(context->FRAME.PSM & 0x2); rt->m_32_bits_fmt = m_texture_shuffle || !(context->FRAME.PSM & 0x2);
} }
#ifndef NDEBUG
if(s_dump) if(s_dump)
{ {
uint64 frame = m_perfmon.GetFrame(); uint64 frame = m_perfmon.GetFrame();
@ -476,11 +479,10 @@ void GSRendererHW::Draw()
s_n++; s_n++;
#ifdef ENABLE_OGL_DEBUG
} else { } else {
s_n += 2; s_n += 2;
#endif
} }
#endif
if(m_hacks.m_oi && !(this->*m_hacks.m_oi)(rt_tex, ds_tex, tex)) if(m_hacks.m_oi && !(this->*m_hacks.m_oi)(rt_tex, ds_tex, tex))
{ {
@ -600,6 +602,7 @@ void GSRendererHW::Draw()
(this->*m_hacks.m_oo)(); (this->*m_hacks.m_oo)();
} }
#ifndef NDEBUG
if(s_dump) if(s_dump)
{ {
uint64 frame = m_perfmon.GetFrame(); uint64 frame = m_perfmon.GetFrame();
@ -628,11 +631,10 @@ void GSRendererHW::Draw()
{ {
s_dump = 0; s_dump = 0;
} }
#ifdef ENABLE_OGL_DEBUG
} else { } else {
s_n += 1; s_n += 1;
#endif
} }
#endif
#ifdef DISABLE_HW_TEXTURE_CACHE #ifdef DISABLE_HW_TEXTURE_CACHE