Searched refs:makeSpace (Results 1 - 4 of 4) sorted by relevance
/third_party/skia/src/gpu/ |
H A D | GrBufferAllocPool.h | 94 * *makeSpace is called again. 109 void* makeSpace(size_t size, size_t alignment, sk_sp<const GrBuffer>* buffer, size_t* offset); 115 * *makeSpace is called again. 188 * *makeSpace is called again. 205 void* makeSpace(size_t vertexSize, 214 * *makeSpace is called again. 267 * *makeSpace is called again. 281 void* makeSpace(int indexCount, sk_sp<const GrBuffer>* buffer, int* startIndex); 287 * *makeSpace is called again. 323 GrDrawIndirectWriter makeSpace(in function in GrDrawIndirectBufferAllocPool [all...] |
H A D | GrBufferAllocPool.cpp | 189 void* GrBufferAllocPool::makeSpace(size_t size, in makeSpace() function in GrBufferAllocPool 427 void* GrVertexBufferAllocPool::makeSpace(size_t vertexSize, in makeSpace() function in GrVertexBufferAllocPool 436 void* ptr = INHERITED::makeSpace(SkSafeMath::Mul(vertexSize, vertexCount), in makeSpace() 480 void* GrIndexBufferAllocPool::makeSpace(int indexCount, sk_sp<const GrBuffer>* buffer, in makeSpace() function in GrIndexBufferAllocPool 487 void* ptr = INHERITED::makeSpace(SkSafeMath::Mul(indexCount, sizeof(uint16_t)), in makeSpace()
|
H A D | GrOpFlushState.cpp | 182 return fVertexPool.makeSpace(vertexSize, vertexCount, buffer, startVertex); in makeVertexSpace() 187 return reinterpret_cast<uint16_t*>(fIndexPool.makeSpace(indexCount, buffer, startIndex)); in makeIndexSpace()
|
H A D | GrOpFlushState.h | 143 return fDrawIndirectPool.makeSpace(drawCount, buffer, offset);
|
Completed in 4 milliseconds