Searched refs:lastCache (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d9/
H A DVertexDeclarationCache.cpp179 VertexDeclCacheEntry *lastCache = mVertexDeclCache; local
183 if (mVertexDeclCache[i].lruCount < lastCache->lruCount)
185 lastCache = &mVertexDeclCache[i];
189 if (lastCache->vertexDeclaration != NULL)
191 SafeRelease(lastCache->vertexDeclaration);
196 memcpy(lastCache->cachedElements, elements, (element - elements) * sizeof(D3DVERTEXELEMENT9));
197 device->CreateVertexDeclaration(elements, &lastCache->vertexDeclaration);
198 device->SetVertexDeclaration(lastCache->vertexDeclaration);
199 mLastSetVDecl = lastCache->vertexDeclaration;
200 lastCache
[all...]

Completed in 56 milliseconds