Home
last modified time | relevance | path

Searched refs:fMemory (Results 1 – 9 of 9) sorted by relevance

/external/skia/src/gpu/vk/
DGrVkMemory.cpp115 alloc->fMemory, alloc->fOffset)); in AllocAndBindBufferMemory()
203 alloc->fMemory, alloc->fOffset)); in AllocAndBindImageMemory()
229 GR_VK_CALL(gpu->vkInterface(), FreeMemory(gpu->device(), alloc.fMemory, nullptr)); in FreeImageMemory()
294 mappedMemoryRange.memory = alloc.fMemory; in FlushMappedAlloc()
307 mappedMemoryRange.memory = alloc.fMemory; in InvalidateMappedAlloc()
503 alloc->fMemory = fAlloc; in alloc()
508 SkASSERT(alloc.fMemory == fAlloc); in free()
529 &alloc->fMemory)); in subAlloc()
629 GR_VK_CALL(iface, FreeMemory(fGpu->device(), alloc.fMemory, nullptr)); in free()
634 if (fSubHeaps[i]->memory() == alloc.fMemory) { in free()
DGrVkBuffer.cpp106 SkASSERT(fAlloc.fMemory); in freeGPUData()
171 VkResult err = VK_CALL(gpu, MapMemory(gpu->device(), alloc.fMemory, in internalMap()
192 VK_CALL(gpu, UnmapMemory(gpu->device(), this->alloc().fMemory)); in internalUnmap()
DGrVkImage.h111 fAlloc.fMemory = VK_NULL_HANDLE; in Resource()
DGrVkGpu.cpp597 err = GR_VK_CALL(interface, MapMemory(fDevice, alloc.fMemory, offset, size, 0, &mapPtr)); in uploadTexDataLinear()
617 GR_VK_CALL(interface, UnmapMemory(fDevice, alloc.fMemory)); in uploadTexDataLinear()
873 if (VK_NULL_HANDLE == info->fImage || VK_NULL_HANDLE == info->fAlloc.fMemory) { in onWrapBackendTexture()
1106 alloc.fMemory, in copy_testing_data()
1133 GR_VK_CALL(gpu->vkInterface(), UnmapMemory(gpu->device(), alloc.fMemory)); in copy_testing_data()
1386 if (backend && backend->fImage && backend->fAlloc.fMemory) { in isTestingOnlyBackendTexture()
DGrVkTexture.cpp99 SkASSERT(VK_NULL_HANDLE != info->fImage && VK_NULL_HANDLE != info->fAlloc.fMemory); in MakeWrappedTexture()
DGrVkTextureRenderTarget.cpp209 SkASSERT(VK_NULL_HANDLE != info->fImage && VK_NULL_HANDLE != info->fAlloc.fMemory); in MakeWrappedTextureRenderTarget()
/external/dng_sdk/source/
Ddng_simple_image.cpp34 , fMemory () in dng_simple_image()
42 fMemory.Reset (allocator.Allocate (bytes)); in dng_simple_image()
44 fBuffer = dng_pixel_buffer (bounds, 0, planes, pixelType, pcInterleaved, fMemory->Buffer ()); in dng_simple_image()
Ddng_simple_image.h36 AutoPtr<dng_memory_block> fMemory; variable
/external/skia/include/gpu/vk/
DGrVkTypes.h34 VkDeviceMemory fMemory; // can be VK_NULL_HANDLE iff Tex is an RT and uses borrow semantics member