Lines Matching defs:ptr
54 deUint32 readIndexArray (const IndexType type, const void* ptr, size_t ndx)
59 return ((const deUint8*)ptr)[ndx];
64 deMemcpy(&retVal, (const deUint8*)ptr + ndx * sizeof(deUint16), sizeof(deUint16));
72 deMemcpy(&retVal, (const deUint8*)ptr + ndx * sizeof(deUint32), sizeof(deUint32));
1670 DrawIndices::DrawIndices (const deUint32* ptr, int baseVertex_)
1671 : indices (ptr)
1677 DrawIndices::DrawIndices (const deUint16* ptr, int baseVertex_)
1678 : indices (ptr)
1684 DrawIndices::DrawIndices (const deUint8* ptr, int baseVertex_)
1685 : indices (ptr)
1691 DrawIndices::DrawIndices (const void* ptr, IndexType type, int baseVertex_)
1692 : indices (ptr)