mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-03 08:52:39 +00:00
VideoCommon: Remove BBox* forwarding functions
This commit is contained in:
parent
e4aef0a85b
commit
a24e78b3cf
13 changed files with 33 additions and 52 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue