Video Common: Improve texture dumping to work with fifoci and

fifo_comparer
This commit is contained in:
iwubcode
2017-09-13 23:46:30 -05:00
parent 53684701fa
commit a129a53e56
5 changed files with 51 additions and 20 deletions

View File

@ -45,6 +45,15 @@ void VideoBackendBase::Video_ExitLoop()
s_FifoShuttingDown.Set();
}
void VideoBackendBase::Video_CleanupShared()
{
// First stop any framedumping, which might need to dump the last xfb frame. This process
// can require additional graphics sub-systems so it needs to be done first
g_renderer->ExitFramedumping();
Video_Cleanup();
}
// Run from the CPU thread (from VideoInterface.cpp)
void VideoBackendBase::Video_BeginField(u32 xfbAddr, u32 fbWidth, u32 fbStride, u32 fbHeight,
u64 ticks)