Fixed variable shadowing warning.

This commit is contained in:
Бранимир Караџић 2019-08-11 09:08:16 -07:00
parent 2b5246f72c
commit 518a5f189f

View File

@ -3079,10 +3079,10 @@ VK_IMPORT_DEVICE
_vertexInputState.vertexBindingDescriptionCount = 0;
_vertexInputState.vertexAttributeDescriptionCount = 0;
for (uint8_t ii = 0; ii < _numStream; ++ii)
for (uint8_t stream = 0; stream < _numStream; ++stream)
{
VertexDecl decl;
bx::memCopy(&decl, _vertexDecl[ii], sizeof(VertexDecl) );
bx::memCopy(&decl, _vertexDecl[stream], sizeof(VertexDecl) );
const uint16_t* attrMask = _program.m_vsh->m_attrMask;
for (uint32_t ii = 0; ii < Attrib::Count; ++ii)