VideoBackends/D3D: Cache bounding box values between reads

This commit is contained in:
Connor McLaughlin
2021-04-18 03:14:43 +10:00
committed by Stenzek
parent ee4c0ba168
commit 0c11dca121
4 changed files with 112 additions and 43 deletions

View File

@ -274,6 +274,11 @@ void Renderer::BBoxWriteImpl(int index, u16 value)
BBox::Set(index, value);
}
void Renderer::BBoxFlushImpl()
{
BBox::Flush();
}
void Renderer::Flush()
{
D3D::context->Flush();