Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
DVkImage.cpp637 uint8_t *dstSliceMemory = dstMemory; in copy() local
640 ASSERT(((bufferIsSource ? dstSliceMemory : srcSliceMemory) + copySize) < end()); in copy()
641 ASSERT(((bufferIsSource ? srcSliceMemory : dstSliceMemory) + copySize) < buffer->end()); in copy()
642 memcpy(dstSliceMemory, srcSliceMemory, copySize); in copy()
644 dstSliceMemory += dstSlicePitchBytes; in copy()
654 uint8_t *dstSliceMemory = dstLayerMemory; in copy() local
657 ASSERT(((bufferIsSource ? dstSliceMemory : srcSliceMemory) + copySize) < end()); in copy()
658 ASSERT(((bufferIsSource ? srcSliceMemory : dstSliceMemory) + copySize) < buffer->end()); in copy()
659 memcpy(dstSliceMemory, srcSliceMemory, copySize); in copy()
661 dstSliceMemory += dstRowPitchBytes; in copy()