VideoCommon: Remove BBox* forwarding functions

This commit is contained in:
Techjar 2021-05-29 01:44:22 -04:00
parent e4aef0a85b
commit a24e78b3cf
13 changed files with 33 additions and 52 deletions

View file

@ -264,17 +264,17 @@ void Renderer::UnbindTexture(const AbstractTexture* texture)
D3D::stateman->ApplyTextures();
}
u16 Renderer::BBoxReadImpl(int index)
u16 Renderer::BBoxRead(int index)
{
return static_cast<u16>(BBox::Get(index));
}
void Renderer::BBoxWriteImpl(int index, u16 value)
void Renderer::BBoxWrite(int index, u16 value)
{
BBox::Set(index, value);
}
void Renderer::BBoxFlushImpl()
void Renderer::BBoxFlush()
{
BBox::Flush();
}