mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
VideoSW: Clear Vertex data before usage
This must have no effect, everything else is usage of uninitialized memory.
This commit is contained in:
parent
aabcd441d9
commit
5d63a08a50
3 changed files with 9 additions and 1 deletions
|
@ -34,6 +34,8 @@ SWVertexLoader::~SWVertexLoader()
|
|||
|
||||
void SWVertexLoader::SetFormat(u8 attributeIndex, u8 primitiveType)
|
||||
{
|
||||
memset(&m_Vertex, 0, sizeof(m_Vertex));
|
||||
|
||||
m_attributeIndex = attributeIndex;
|
||||
|
||||
VertexLoaderUID uid(g_main_cp_state.vtx_desc, g_main_cp_state.vtx_attr[m_attributeIndex]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue