Home
last modified time | relevance | path

Searched refs:newVertexDeclarationHash (Results 1 – 1 of 1) sorted by relevance

/dports/graphics/urho3d/Urho3D-1.7.1/Source/Urho3D/Graphics/Direct3D11/
H A DD3D11Graphics.cpp2456 unsigned long long newVertexDeclarationHash = 0; in PrepareDraw() local
2460 newVertexDeclarationHash |= vertexBuffers_[i]->GetBufferHash(i); in PrepareDraw()
2463 if (newVertexDeclarationHash) in PrepareDraw()
2466 newVertexDeclarationHash += vertexShader_->GetElementHash(); in PrepareDraw()
2467 if (newVertexDeclarationHash != vertexDeclarationHash_) in PrepareDraw()
2470 impl_->vertexDeclarations_.Find(newVertexDeclarationHash); in PrepareDraw()
2474 … i = impl_->vertexDeclarations_.Insert(MakePair(newVertexDeclarationHash, newVertexDeclaration)); in PrepareDraw()
2477 vertexDeclarationHash_ = newVertexDeclarationHash; in PrepareDraw()