mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
SWVertexLoader: Remove GetIndexBuffer()
It's only ever used in one place internally and is arguably unnecessary.
This commit is contained in:
parent
4d2a4924cb
commit
29a362be43
2 changed files with 2 additions and 2 deletions
|
@ -52,7 +52,7 @@ void SWVertexLoader::ResetBuffer(u32 stride)
|
|||
{
|
||||
m_cur_buffer_pointer = m_base_buffer_pointer = m_local_vertex_buffer.data();
|
||||
m_end_buffer_pointer = m_cur_buffer_pointer + m_local_vertex_buffer.size();
|
||||
IndexGenerator::Start(GetIndexBuffer());
|
||||
IndexGenerator::Start(m_local_index_buffer.data());
|
||||
}
|
||||
|
||||
void SWVertexLoader::vFlush()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue