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.cpp1565 size_t indicesDataSize = 0; in getBuffer() local
1569 indicesDataSize = sizeof(GLuint) * indexInfo->srcCount; in getBuffer()
1572 indicesDataSize = sizeof(GLushort) * indexInfo->srcCount; in getBuffer()
1575 indicesDataSize = sizeof(GLubyte) * indexInfo->srcCount; in getBuffer()
1578 indicesDataSize = sizeof(GLushort) * indexInfo->srcCount; in getBuffer()
1582 ANGLE_CHECK_GL_ALLOC(context11, mIndicesMemoryBuffer.resize(indicesDataSize)); in getBuffer()
1584 memcpy(mIndicesMemoryBuffer.data(), indexInfo->srcIndices, indicesDataSize); in getBuffer()