HomeSort by relevance Sort by last modified time
    Searched defs:cpuData (Results 1 - 2 of 2) sorted by null

  /external/skia/src/gpu/
GrBuffer.cpp 15 void* cpuData;
17 cpuData = sk_calloc_throw(sizeInBytes);
19 cpuData = sk_malloc_throw(sizeInBytes);
22 memcpy(cpuData, data, sizeInBytes);
24 return new GrBuffer(gpu, sizeInBytes, intendedType, cpuData);
27 GrBuffer::GrBuffer(GrGpu* gpu, size_t sizeInBytes, GrBufferType type, void* cpuData)
32 , fCPUData(cpuData)
  /external/skqp/src/gpu/
GrBuffer.cpp 15 void* cpuData;
17 cpuData = sk_calloc_throw(sizeInBytes);
19 cpuData = sk_malloc_throw(sizeInBytes);
22 memcpy(cpuData, data, sizeInBytes);
24 return new GrBuffer(gpu, sizeInBytes, intendedType, cpuData);
27 GrBuffer::GrBuffer(GrGpu* gpu, size_t sizeInBytes, GrBufferType type, void* cpuData)
32 , fCPUData(cpuData)

Completed in 187 milliseconds