Home
last modified time | relevance | path

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

/external/skia/src/gpu/
DGrBuffer.cpp15 void* cpuData; in CreateCPUBacked() local
17 cpuData = sk_calloc_throw(sizeInBytes); in CreateCPUBacked()
19 cpuData = sk_malloc_throw(sizeInBytes); in CreateCPUBacked()
22 memcpy(cpuData, data, sizeInBytes); in CreateCPUBacked()
24 return new GrBuffer(gpu, sizeInBytes, intendedType, cpuData); in CreateCPUBacked()
27 GrBuffer::GrBuffer(GrGpu* gpu, size_t sizeInBytes, GrBufferType type, void* cpuData) in GrBuffer() argument
32 , fCPUData(cpuData) in GrBuffer()
DGrBuffer.h119 GrBuffer(GrGpu*, size_t sizeInBytes, GrBufferType, void* cpuData);