Searched refs:srcSizeInBytes (Results 1 - 11 of 11) sorted by relevance
/third_party/skia/src/gpu/gl/ |
H A D | GrGLBuffer.cpp | 262 bool GrGLBuffer::onUpdateData(const void* src, size_t srcSizeInBytes) { in onUpdateData() argument 270 if (srcSizeInBytes > this->size()) { in onUpdateData() 273 SkASSERT(srcSizeInBytes <= this->size()); in onUpdateData() 278 if (this->size() == srcSizeInBytes) { in onUpdateData() 280 GL_ALLOC_CALL(BufferData(target, (GrGLsizeiptr)srcSizeInBytes, src, fUsage)); in onUpdateData() 297 GL_CALL(BufferSubData(target, 0, (GrGLsizeiptr) srcSizeInBytes, src)); in onUpdateData() 305 GL_ALLOC_CALL(BufferData(target, (GrGLsizeiptr)srcSizeInBytes, src, fUsage)); in onUpdateData() 309 fGLSizeInBytes = srcSizeInBytes; in onUpdateData()
|
H A D | GrGLBuffer.h | 53 bool onUpdateData(const void* src, size_t srcSizeInBytes) override;
|
/third_party/skia/src/gpu/ |
H A D | GrGpuBuffer.cpp | 45 bool GrGpuBuffer::updateData(const void* src, size_t srcSizeInBytes) { in updateData() argument 48 SkASSERT(srcSizeInBytes <= fSizeInBytes); in updateData() 52 bool result = this->onUpdateData(src, srcSizeInBytes); in updateData()
|
H A D | GrGpuBuffer.h | 70 * be undefined. srcSizeInBytes must be <= to the buffer size. 81 bool updateData(const void* src, size_t srcSizeInBytes); 92 virtual bool onUpdateData(const void* src, size_t srcSizeInBytes) = 0;
|
/third_party/skia/src/gpu/vk/ |
H A D | GrVkBuffer.cpp | 375 bool GrVkBuffer::onUpdateData(const void* src, size_t srcSizeInBytes) { argument 380 if (srcSizeInBytes > this->size()) { 385 this->vkMap(srcSizeInBytes); 389 memcpy(fMapPtr, src, srcSizeInBytes); 390 this->vkUnmap(srcSizeInBytes); 393 this->copyCpuDataToGpuBuffer(src, srcSizeInBytes);
|
H A D | GrVkBuffer.h | 64 bool onUpdateData(const void* src, size_t srcSizeInBytes) override;
|
/third_party/skia/src/gpu/dawn/ |
H A D | GrDawnBuffer.cpp | 91 bool GrDawnBuffer::onUpdateData(const void* src, size_t srcSizeInBytes) { in onUpdateData() argument 96 memcpy(fMapPtr, src, srcSizeInBytes); in onUpdateData()
|
H A D | GrDawnBuffer.h | 24 bool onUpdateData(const void* src, size_t srcSizeInBytes) override;
|
/third_party/skia/src/gpu/mock/ |
H A D | GrMockBuffer.h | 30 bool onUpdateData(const void* src, size_t srcSizeInBytes) override { return true; }
|
/third_party/skia/src/gpu/mtl/ |
H A D | GrMtlBuffer.h | 39 bool onUpdateData(const void* src, size_t srcSizeInBytes) override;
|
/third_party/skia/src/gpu/d3d/ |
H A D | GrD3DBuffer.h | 45 bool onUpdateData(const void* src, size_t srcSizeInBytes) override;
|
Completed in 4 milliseconds