VideoSW: Clear Vertex data before usage

This must have no effect, everything else is usage of uninitialized memory.
This commit is contained in:
degasus
2015-12-05 12:18:31 +01:00
parent aabcd441d9
commit 5d63a08a50
3 changed files with 9 additions and 1 deletions

View File

@ -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]);