Merge pull request #771 from velkyel/master

VertexDecl::m_hash should count m_stride too
This commit is contained in:
Branimir Karadžić 2016-04-22 07:21:50 -07:00
commit 3394ff7850
1 changed files with 1 additions and 0 deletions

View File

@ -107,6 +107,7 @@ namespace bgfx
murmur.begin();
murmur.add(m_attributes, sizeof(m_attributes) );
murmur.add(m_offset, sizeof(m_offset) );
murmur.add(m_stride);
m_hash = murmur.end();
}