Home
last modified time | relevance | path

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

/external/angle/src/libANGLE/renderer/d3d/d3d9/
DRenderer9.cpp141 mCountingIB = nullptr; in Renderer9()
1691 if (!mCountingIB || mCountingIB->getBufferSize() < spaceNeeded) in getCountingIB()
1693 SafeDelete(mCountingIB); in getCountingIB()
1694 mCountingIB = new StaticIndexBufferInterface(this); in getCountingIB()
1695 ANGLE_TRY(mCountingIB->reserveBufferSpace(context, spaceNeeded, in getCountingIB()
1699 ANGLE_TRY(mCountingIB->mapBuffer(context, spaceNeeded, &mappedMemory, nullptr)); in getCountingIB()
1707 ANGLE_TRY(mCountingIB->unmapBuffer(context)); in getCountingIB()
1714 if (!mCountingIB || mCountingIB->getBufferSize() < spaceNeeded) in getCountingIB()
1716 SafeDelete(mCountingIB); in getCountingIB()
1717 mCountingIB = new StaticIndexBufferInterface(this); in getCountingIB()
[all …]
DRenderer9.h553 StaticIndexBufferInterface *mCountingIB; variable