Home
last modified time | relevance | path

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

/external/angle/src/libANGLE/renderer/d3d/d3d11/
DBuffer11.cpp1550 size_t indicesDataSize = 0; in getBuffer() local
1554 indicesDataSize = sizeof(GLuint) * indexInfo->srcCount; in getBuffer()
1557 indicesDataSize = sizeof(GLushort) * indexInfo->srcCount; in getBuffer()
1560 indicesDataSize = sizeof(GLubyte) * indexInfo->srcCount; in getBuffer()
1563 indicesDataSize = sizeof(GLushort) * indexInfo->srcCount; in getBuffer()
1567 ANGLE_CHECK_GL_ALLOC(context11, mIndicesMemoryBuffer.resize(indicesDataSize)); in getBuffer()
1569 memcpy(mIndicesMemoryBuffer.data(), indexInfo->srcIndices, indicesDataSize); in getBuffer()