Home
last modified time | relevance | path

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

/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
DIndexDataManager.cpp194 unsigned int convertCount = count; in prepareIndexData() local
201 convertCount = storage->getSize() / gl::ComputeTypeSize(type); in prepareIndexData()
217 if (convertCount > std::numeric_limits<unsigned int>::max() / indexTypeSize) in prepareIndexData()
219 …rving %u indicies of %u bytes each exceeds the maximum buffer size.", convertCount, indexTypeSize); in prepareIndexData()
223 unsigned int bufferSizeRequired = convertCount * indexTypeSize; in prepareIndexData()
237 convertIndices(type, staticBuffer ? storage->getData() : indices, convertCount, output); in prepareIndexData()