2015-05-24 04:32:32 +00:00
|
|
|
// Copyright 2010 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2015-09-28 15:57:16 +00:00
|
|
|
#include "Common/Common.h"
|
2014-08-24 23:13:46 +00:00
|
|
|
#include "Common/Event.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Core/ConfigManager.h"
|
|
|
|
|
2015-01-31 10:38:23 +00:00
|
|
|
#include "VideoCommon/AsyncRequests.h"
|
2014-11-13 22:26:49 +00:00
|
|
|
#include "VideoCommon/BoundingBox.h"
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoCommon/BPStructs.h"
|
|
|
|
#include "VideoCommon/CommandProcessor.h"
|
|
|
|
#include "VideoCommon/Fifo.h"
|
|
|
|
#include "VideoCommon/FramebufferManagerBase.h"
|
|
|
|
#include "VideoCommon/MainBase.h"
|
|
|
|
#include "VideoCommon/OnScreenDisplay.h"
|
|
|
|
#include "VideoCommon/PixelEngine.h"
|
|
|
|
#include "VideoCommon/RenderBase.h"
|
|
|
|
#include "VideoCommon/TextureCacheBase.h"
|
|
|
|
#include "VideoCommon/VertexLoaderManager.h"
|
|
|
|
#include "VideoCommon/VideoBackendBase.h"
|
|
|
|
#include "VideoCommon/VideoConfig.h"
|
|
|
|
#include "VideoCommon/VideoState.h"
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2011-02-14 02:18:03 +00:00
|
|
|
bool s_BackendInitialized = false;
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2014-08-24 23:13:46 +00:00
|
|
|
static Common::Flag s_FifoShuttingDown;
|
2010-11-18 02:21:26 +00:00
|
|
|
|
|
|
|
static volatile struct
|
|
|
|
{
|
|
|
|
u32 xfbAddr;
|
|
|
|
u32 fbWidth;
|
2014-05-02 07:08:44 +00:00
|
|
|
u32 fbStride;
|
2010-11-18 02:21:26 +00:00
|
|
|
u32 fbHeight;
|
|
|
|
} s_beginFieldArgs;
|
|
|
|
|
2011-03-16 22:48:17 +00:00
|
|
|
void VideoBackendHardware::EmuStateChange(EMUSTATE_CHANGE newState)
|
2010-11-18 02:21:26 +00:00
|
|
|
{
|
2015-10-10 15:44:42 +00:00
|
|
|
EmulatorState(newState == EMUSTATE_CHANGE_PLAY);
|
2010-11-18 02:21:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Enter and exit the video loop
|
2011-03-16 22:48:17 +00:00
|
|
|
void VideoBackendHardware::Video_EnterLoop()
|
2010-11-18 02:21:26 +00:00
|
|
|
{
|
Big Fifo Commit Part2: Now the fifo is more stable than my first commit, so is time...
- ReImplementing Single Core Mode like Dual Core Mode Style.
- Stage 1: My goal is, we have the Fifo, CommandProccessor code the more clear, maintenible and documented possible. When I quit dolphin I want any developer can continue with the work only reading the code.
* Big Refactoring: A lot of functions was changed the names, and modularized.
Now the FifoLoop and CatchUpGPU does not exist, was replaced by RunGpu() and RunGpuLoop().
The general idea is modeling the code like the real HW. The fifo is only a buffer where the Write Gather Pipe write the commands and from the Graphic Processor read these.
* Big Clean UP a lot of obsolete code and comments was deleted, like DcFakeWachDog, "Fifo very soon hack", etc.
In the stage 2, I will refactoring more code doing emphasis in the division of CommandProcessor, Fifo, Gpu Emulation. Beside I will comment all functions and variables in the code (Don't worry I will ask for English help for this part ;) )
Please test a lot SC mode and DC mode :)
Thank you so much for testing always and the patience. I don't like broke your favorite game but... you must believe me this part is very sensible, I only try to contribute for have a better and stable dolphin emulator.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7185 8ced0084-cf51-0410-be5f-012b33b47a6e
2011-02-17 04:25:21 +00:00
|
|
|
RunGpuLoop();
|
2010-11-18 02:21:26 +00:00
|
|
|
}
|
|
|
|
|
2011-03-16 22:48:17 +00:00
|
|
|
void VideoBackendHardware::Video_ExitLoop()
|
2010-11-18 02:21:26 +00:00
|
|
|
{
|
Big Fifo Commit Part2: Now the fifo is more stable than my first commit, so is time...
- ReImplementing Single Core Mode like Dual Core Mode Style.
- Stage 1: My goal is, we have the Fifo, CommandProccessor code the more clear, maintenible and documented possible. When I quit dolphin I want any developer can continue with the work only reading the code.
* Big Refactoring: A lot of functions was changed the names, and modularized.
Now the FifoLoop and CatchUpGPU does not exist, was replaced by RunGpu() and RunGpuLoop().
The general idea is modeling the code like the real HW. The fifo is only a buffer where the Write Gather Pipe write the commands and from the Graphic Processor read these.
* Big Clean UP a lot of obsolete code and comments was deleted, like DcFakeWachDog, "Fifo very soon hack", etc.
In the stage 2, I will refactoring more code doing emphasis in the division of CommandProcessor, Fifo, Gpu Emulation. Beside I will comment all functions and variables in the code (Don't worry I will ask for English help for this part ;) )
Please test a lot SC mode and DC mode :)
Thank you so much for testing always and the patience. I don't like broke your favorite game but... you must believe me this part is very sensible, I only try to contribute for have a better and stable dolphin emulator.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7185 8ced0084-cf51-0410-be5f-012b33b47a6e
2011-02-17 04:25:21 +00:00
|
|
|
ExitGpuLoop();
|
2014-08-24 23:13:46 +00:00
|
|
|
s_FifoShuttingDown.Set();
|
2010-11-18 02:21:26 +00:00
|
|
|
}
|
|
|
|
|
2011-03-16 22:48:17 +00:00
|
|
|
void VideoBackendHardware::Video_SetRendering(bool bEnabled)
|
2010-11-18 02:21:26 +00:00
|
|
|
{
|
|
|
|
Fifo_SetRendering(bEnabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run from the CPU thread (from VideoInterface.cpp)
|
2014-05-02 07:08:44 +00:00
|
|
|
void VideoBackendHardware::Video_BeginField(u32 xfbAddr, u32 fbWidth, u32 fbStride, u32 fbHeight)
|
2010-11-18 02:21:26 +00:00
|
|
|
{
|
2011-02-14 02:18:03 +00:00
|
|
|
if (s_BackendInitialized && g_ActiveConfig.bUseXFB)
|
2010-11-18 02:21:26 +00:00
|
|
|
{
|
|
|
|
s_beginFieldArgs.xfbAddr = xfbAddr;
|
|
|
|
s_beginFieldArgs.fbWidth = fbWidth;
|
2014-05-02 07:08:44 +00:00
|
|
|
s_beginFieldArgs.fbStride = fbStride;
|
2010-11-18 02:21:26 +00:00
|
|
|
s_beginFieldArgs.fbHeight = fbHeight;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run from the CPU thread (from VideoInterface.cpp)
|
2011-03-16 22:48:17 +00:00
|
|
|
void VideoBackendHardware::Video_EndField()
|
2010-11-18 02:21:26 +00:00
|
|
|
{
|
2015-01-31 11:01:01 +00:00
|
|
|
if (s_BackendInitialized && g_ActiveConfig.bUseXFB && g_renderer)
|
2010-11-18 02:21:26 +00:00
|
|
|
{
|
Add the 'desynced GPU thread' mode.
It's a relatively big commit (less big with -w), but it's hard to test
any of this separately...
The basic problem is that in netplay or movies, the state of the CPU
must be deterministic, including when the game receives notification
that the GPU has processed FIFO data. Dual core mode notifies the game
whenever the GPU thread actually gets around to doing the work, so it
isn't deterministic. Single core mode is because it notifies the game
'instantly' (after processing the data synchronously), but it's too slow
for many systems and games.
My old dc-netplay branch worked as follows: everything worked as normal
except the state of the CP registers was a lie, and the CPU thread only
delivered results when idle detection triggered (waiting for the GPU if
they weren't ready at that point). Usually, a game is idle iff all the
work for the frame has been done, except for a small amount of work
depending on the GPU result, so neither the CPU or the GPU waiting on
the other affected performance much. However, it's possible that the
game could be waiting for some earlier interrupt, and any of several
games which, for whatever reason, never went into a detectable idle
(even when I tried to improve the detection) would never receive results
at all. (The current method should have better compatibility, but it
also has slightly higher overhead and breaks some other things, so I
want to reimplement this, hopefully with less impact on the code, in the
future.)
With this commit, the basic idea is that the CPU thread acts as if the
work has been done instantly, like single core mode, but actually hands
it off asynchronously to the GPU thread (after backing up some data that
the game might change in memory before it's actually done). Since the
work isn't done, any feedback from the GPU to the CPU, such as real
XFB/EFB copies (virtual are OK), EFB pokes, performance queries, etc. is
broken; but most games work with these options disabled, and there is no
need to try to detect what the CPU thread is doing.
Technically: when the flag g_use_deterministic_gpu_thread (currently
stuck on) is on, the CPU thread calls RunGpu like in single core mode.
This function synchronously copies the data from the FIFO to the
internal video buffer and updates the CP registers, interrupts, etc.
However, instead of the regular ReadDataFromFifo followed by running the
opcode decoder, it runs ReadDataFromFifoOnCPU ->
OpcodeDecoder_Preprocess, which relatively quickly scans through the
FIFO data, detects SetFinish calls etc., which are immediately fired,
and saves certain associated data from memory (e.g. display lists) in
AuxBuffers (a parallel stream to the main FIFO, which is a bit slow at
the moment), before handing the data off to the GPU thread to actually
render. That makes up the bulk of this commit.
In various circumstances, including the aforementioned EFB pokes and
performance queries as well as swap requests (i.e. the end of a frame -
we don't want the CPU potentially pumping out frames too quickly and the
GPU falling behind*), SyncGPU is called to wait for actual completion.
The overhead mainly comes from OpcodeDecoder_Preprocess (which is,
again, synchronous), as well as the actual copying.
Currently, display lists and such are escrowed from main memory even
though they usually won't change over the course of a frame, and
textures are not even though they might, resulting in a small chance of
graphical glitches. When the texture locking (i.e. fault on write) code
lands, I can make this all correct and maybe a little faster.
* This suggests an alternate determinism method of just delaying results
until a short time before the end of each frame. For all I know this
might mostly work - I haven't tried it - but if any significant work
hinges on the competion of render to texture etc., the frame will be
missed.
2014-08-28 02:56:19 +00:00
|
|
|
SyncGPU(SYNC_GPU_SWAP);
|
2015-01-12 08:40:43 +00:00
|
|
|
|
2015-01-31 11:01:01 +00:00
|
|
|
AsyncRequests::Event e;
|
|
|
|
e.time = 0;
|
|
|
|
e.type = AsyncRequests::Event::SWAP_EVENT;
|
|
|
|
|
|
|
|
e.swap_event.xfbAddr = s_beginFieldArgs.xfbAddr;
|
|
|
|
e.swap_event.fbWidth = s_beginFieldArgs.fbWidth;
|
|
|
|
e.swap_event.fbStride = s_beginFieldArgs.fbStride;
|
|
|
|
e.swap_event.fbHeight = s_beginFieldArgs.fbHeight;
|
|
|
|
AsyncRequests::GetInstance()->PushEvent(e, false);
|
2010-11-18 02:21:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-12 19:33:41 +00:00
|
|
|
void VideoBackendHardware::Video_AddMessage(const std::string& msg, u32 milliseconds)
|
2010-11-18 02:21:26 +00:00
|
|
|
{
|
2014-03-12 19:33:41 +00:00
|
|
|
OSD::AddMessage(msg, milliseconds);
|
2010-11-18 02:21:26 +00:00
|
|
|
}
|
|
|
|
|
2011-03-16 22:48:17 +00:00
|
|
|
void VideoBackendHardware::Video_ClearMessages()
|
2011-02-02 04:40:27 +00:00
|
|
|
{
|
|
|
|
OSD::ClearMessages();
|
|
|
|
}
|
|
|
|
|
2010-11-18 02:21:26 +00:00
|
|
|
// Screenshot
|
2014-03-12 19:33:41 +00:00
|
|
|
bool VideoBackendHardware::Video_Screenshot(const std::string& filename)
|
2010-11-18 02:21:26 +00:00
|
|
|
{
|
2014-03-12 19:33:41 +00:00
|
|
|
Renderer::SetScreenshot(filename.c_str());
|
2011-01-31 01:28:32 +00:00
|
|
|
return true;
|
2010-11-18 02:21:26 +00:00
|
|
|
}
|
|
|
|
|
2015-01-31 10:38:23 +00:00
|
|
|
u32 VideoBackendHardware::Video_AccessEFB(EFBAccessType type, u32 x, u32 y, u32 InputData)
|
2010-11-18 02:21:26 +00:00
|
|
|
{
|
2015-01-31 10:38:23 +00:00
|
|
|
if (!g_ActiveConfig.bEFBAccessEnable)
|
2010-11-18 02:21:26 +00:00
|
|
|
{
|
2015-01-31 10:38:23 +00:00
|
|
|
return 0;
|
2010-11-18 02:21:26 +00:00
|
|
|
}
|
|
|
|
|
2015-01-31 10:38:23 +00:00
|
|
|
if (type == POKE_COLOR || type == POKE_Z)
|
2010-11-18 02:21:26 +00:00
|
|
|
{
|
2015-01-31 10:38:23 +00:00
|
|
|
AsyncRequests::Event e;
|
|
|
|
e.type = type == POKE_COLOR ? AsyncRequests::Event::EFB_POKE_COLOR : AsyncRequests::Event::EFB_POKE_Z;
|
|
|
|
e.time = 0;
|
|
|
|
e.efb_poke.data = InputData;
|
|
|
|
e.efb_poke.x = x;
|
|
|
|
e.efb_poke.y = y;
|
2015-01-31 12:09:25 +00:00
|
|
|
AsyncRequests::GetInstance()->PushEvent(e, false);
|
2015-01-31 10:38:23 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
AsyncRequests::Event e;
|
|
|
|
u32 result;
|
|
|
|
e.type = type == PEEK_COLOR ? AsyncRequests::Event::EFB_PEEK_COLOR : AsyncRequests::Event::EFB_PEEK_Z;
|
|
|
|
e.time = 0;
|
|
|
|
e.efb_peek.x = x;
|
|
|
|
e.efb_peek.y = y;
|
|
|
|
e.efb_peek.data = &result;
|
2015-01-31 12:09:25 +00:00
|
|
|
AsyncRequests::GetInstance()->PushEvent(e, true);
|
2015-01-31 10:38:23 +00:00
|
|
|
return result;
|
2010-11-18 02:21:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-16 23:50:40 +00:00
|
|
|
u32 VideoBackendHardware::Video_GetQueryResult(PerfQueryType type)
|
|
|
|
{
|
2014-03-10 11:30:55 +00:00
|
|
|
if (!g_perf_query->ShouldEmulate())
|
2014-01-09 17:37:59 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
Add the 'desynced GPU thread' mode.
It's a relatively big commit (less big with -w), but it's hard to test
any of this separately...
The basic problem is that in netplay or movies, the state of the CPU
must be deterministic, including when the game receives notification
that the GPU has processed FIFO data. Dual core mode notifies the game
whenever the GPU thread actually gets around to doing the work, so it
isn't deterministic. Single core mode is because it notifies the game
'instantly' (after processing the data synchronously), but it's too slow
for many systems and games.
My old dc-netplay branch worked as follows: everything worked as normal
except the state of the CP registers was a lie, and the CPU thread only
delivered results when idle detection triggered (waiting for the GPU if
they weren't ready at that point). Usually, a game is idle iff all the
work for the frame has been done, except for a small amount of work
depending on the GPU result, so neither the CPU or the GPU waiting on
the other affected performance much. However, it's possible that the
game could be waiting for some earlier interrupt, and any of several
games which, for whatever reason, never went into a detectable idle
(even when I tried to improve the detection) would never receive results
at all. (The current method should have better compatibility, but it
also has slightly higher overhead and breaks some other things, so I
want to reimplement this, hopefully with less impact on the code, in the
future.)
With this commit, the basic idea is that the CPU thread acts as if the
work has been done instantly, like single core mode, but actually hands
it off asynchronously to the GPU thread (after backing up some data that
the game might change in memory before it's actually done). Since the
work isn't done, any feedback from the GPU to the CPU, such as real
XFB/EFB copies (virtual are OK), EFB pokes, performance queries, etc. is
broken; but most games work with these options disabled, and there is no
need to try to detect what the CPU thread is doing.
Technically: when the flag g_use_deterministic_gpu_thread (currently
stuck on) is on, the CPU thread calls RunGpu like in single core mode.
This function synchronously copies the data from the FIFO to the
internal video buffer and updates the CP registers, interrupts, etc.
However, instead of the regular ReadDataFromFifo followed by running the
opcode decoder, it runs ReadDataFromFifoOnCPU ->
OpcodeDecoder_Preprocess, which relatively quickly scans through the
FIFO data, detects SetFinish calls etc., which are immediately fired,
and saves certain associated data from memory (e.g. display lists) in
AuxBuffers (a parallel stream to the main FIFO, which is a bit slow at
the moment), before handing the data off to the GPU thread to actually
render. That makes up the bulk of this commit.
In various circumstances, including the aforementioned EFB pokes and
performance queries as well as swap requests (i.e. the end of a frame -
we don't want the CPU potentially pumping out frames too quickly and the
GPU falling behind*), SyncGPU is called to wait for actual completion.
The overhead mainly comes from OpcodeDecoder_Preprocess (which is,
again, synchronous), as well as the actual copying.
Currently, display lists and such are escrowed from main memory even
though they usually won't change over the course of a frame, and
textures are not even though they might, resulting in a small chance of
graphical glitches. When the texture locking (i.e. fault on write) code
lands, I can make this all correct and maybe a little faster.
* This suggests an alternate determinism method of just delaying results
until a short time before the end of each frame. For all I know this
might mostly work - I haven't tried it - but if any significant work
hinges on the competion of render to texture etc., the frame will be
missed.
2014-08-28 02:56:19 +00:00
|
|
|
SyncGPU(SYNC_GPU_PERFQUERY);
|
|
|
|
|
2015-01-31 12:09:25 +00:00
|
|
|
AsyncRequests::Event e;
|
|
|
|
e.time = 0;
|
|
|
|
e.type = AsyncRequests::Event::PERF_QUERY;
|
|
|
|
|
2013-02-16 23:50:40 +00:00
|
|
|
if (!g_perf_query->IsFlushed())
|
2015-01-31 12:09:25 +00:00
|
|
|
AsyncRequests::GetInstance()->PushEvent(e, true);
|
2013-03-01 22:02:11 +00:00
|
|
|
|
2013-02-16 23:50:40 +00:00
|
|
|
return g_perf_query->GetQueryResult(type);
|
|
|
|
}
|
2011-12-31 04:16:12 +00:00
|
|
|
|
2014-11-13 22:26:49 +00:00
|
|
|
u16 VideoBackendHardware::Video_GetBoundingBox(int index)
|
|
|
|
{
|
|
|
|
if (!g_ActiveConfig.backend_info.bSupportsBBox)
|
2015-05-23 14:05:21 +00:00
|
|
|
return 0;
|
2014-11-13 22:26:49 +00:00
|
|
|
|
2015-05-23 14:08:49 +00:00
|
|
|
if (!g_ActiveConfig.bBBoxEnable)
|
|
|
|
{
|
|
|
|
static bool warn_once = true;
|
|
|
|
if (warn_once)
|
|
|
|
ERROR_LOG(VIDEO, "BBox shall be used but it is disabled. Please use a gameini to enable it for this game.");
|
|
|
|
warn_once = false;
|
|
|
|
return 0;
|
|
|
|
}
|
2014-11-13 22:26:49 +00:00
|
|
|
|
|
|
|
SyncGPU(SYNC_GPU_BBOX);
|
|
|
|
|
2015-01-31 11:43:58 +00:00
|
|
|
AsyncRequests::Event e;
|
|
|
|
u16 result;
|
|
|
|
e.time = 0;
|
|
|
|
e.type = AsyncRequests::Event::BBOX_READ;
|
|
|
|
e.bbox.index = index;
|
|
|
|
e.bbox.data = &result;
|
|
|
|
AsyncRequests::GetInstance()->PushEvent(e, true);
|
2014-11-13 22:26:49 +00:00
|
|
|
|
2015-01-31 11:43:58 +00:00
|
|
|
return result;
|
2014-11-13 22:26:49 +00:00
|
|
|
}
|
|
|
|
|
2012-01-02 10:20:22 +00:00
|
|
|
void VideoBackendHardware::InitializeShared()
|
|
|
|
{
|
|
|
|
VideoCommon_Init();
|
|
|
|
|
2014-08-24 23:13:46 +00:00
|
|
|
s_FifoShuttingDown.Clear();
|
2012-01-02 10:20:22 +00:00
|
|
|
memset((void*)&s_beginFieldArgs, 0, sizeof(s_beginFieldArgs));
|
2012-12-23 12:32:23 +00:00
|
|
|
m_invalid = false;
|
2012-01-02 10:20:22 +00:00
|
|
|
}
|
|
|
|
|
2011-12-31 04:16:12 +00:00
|
|
|
// Run from the CPU thread
|
|
|
|
void VideoBackendHardware::DoState(PointerWrap& p)
|
2011-02-08 10:37:47 +00:00
|
|
|
{
|
2013-02-26 23:28:56 +00:00
|
|
|
bool software = false;
|
|
|
|
p.Do(software);
|
2013-04-24 13:21:54 +00:00
|
|
|
|
2013-02-26 23:28:56 +00:00
|
|
|
if (p.GetMode() == PointerWrap::MODE_READ && software == true)
|
2013-04-24 13:21:54 +00:00
|
|
|
{
|
2013-02-26 23:28:56 +00:00
|
|
|
// change mode to abort load of incompatible save state.
|
|
|
|
p.SetMode(PointerWrap::MODE_VERIFY);
|
2013-04-24 13:21:54 +00:00
|
|
|
}
|
|
|
|
|
2011-12-31 04:16:12 +00:00
|
|
|
VideoCommon_DoState(p);
|
2012-01-01 21:52:31 +00:00
|
|
|
p.DoMarker("VideoCommon");
|
|
|
|
|
|
|
|
p.Do(s_beginFieldArgs);
|
|
|
|
p.DoMarker("VideoBackendHardware");
|
2010-12-16 18:21:14 +00:00
|
|
|
|
2011-12-31 04:16:12 +00:00
|
|
|
// Refresh state.
|
|
|
|
if (p.GetMode() == PointerWrap::MODE_READ)
|
|
|
|
{
|
2012-12-23 12:32:23 +00:00
|
|
|
m_invalid = true;
|
2012-01-01 20:46:02 +00:00
|
|
|
|
|
|
|
// Clear all caches that touch RAM
|
|
|
|
// (? these don't appear to touch any emulation state that gets saved. moved to on load only.)
|
|
|
|
VertexLoaderManager::MarkAllDirty();
|
2010-12-16 18:21:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-24 13:21:54 +00:00
|
|
|
void VideoBackendHardware::CheckInvalidState()
|
|
|
|
{
|
2012-12-23 12:32:23 +00:00
|
|
|
if (m_invalid)
|
|
|
|
{
|
|
|
|
m_invalid = false;
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2012-12-23 12:32:23 +00:00
|
|
|
BPReload();
|
2015-11-06 00:28:05 +00:00
|
|
|
TextureCacheBase::Invalidate();
|
2012-12-23 12:32:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-31 04:16:12 +00:00
|
|
|
void VideoBackendHardware::PauseAndLock(bool doLock, bool unpauseOnUnlock)
|
2010-12-16 18:21:14 +00:00
|
|
|
{
|
2011-12-31 04:16:12 +00:00
|
|
|
Fifo_PauseAndLock(doLock, unpauseOnUnlock);
|
2011-02-08 10:37:47 +00:00
|
|
|
}
|
|
|
|
|
2011-03-16 22:48:17 +00:00
|
|
|
void VideoBackendHardware::RunLoop(bool enable)
|
2011-02-08 10:37:47 +00:00
|
|
|
{
|
|
|
|
VideoCommon_RunLoop(enable);
|
2010-12-16 18:21:14 +00:00
|
|
|
}
|
|
|
|
|
2011-03-16 22:48:17 +00:00
|
|
|
void VideoBackendHardware::Video_GatherPipeBursted()
|
2010-11-18 02:21:26 +00:00
|
|
|
{
|
|
|
|
CommandProcessor::GatherPipeBursted();
|
|
|
|
}
|
|
|
|
|
2015-06-03 21:21:46 +00:00
|
|
|
int VideoBackendHardware::Video_Sync(int ticks)
|
2010-11-18 02:21:26 +00:00
|
|
|
{
|
2015-06-03 21:21:46 +00:00
|
|
|
return Fifo_Update(ticks);
|
2010-11-18 02:21:26 +00:00
|
|
|
}
|
|
|
|
|
2014-02-02 13:16:43 +00:00
|
|
|
void VideoBackendHardware::RegisterCPMMIO(MMIO::Mapping* mmio, u32 base)
|
|
|
|
{
|
|
|
|
CommandProcessor::RegisterMMIO(mmio, base);
|
|
|
|
}
|
|
|
|
|
2014-09-06 21:26:40 +00:00
|
|
|
void VideoBackendHardware::UpdateWantDeterminism(bool want)
|
|
|
|
{
|
|
|
|
Fifo_UpdateWantDeterminism(want);
|
|
|
|
}
|
|
|
|
|