Home
last modified time | relevance | path

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

/external/swiftshader/src/Vulkan/
DVkImage.cpp157 void Image::copy(VkBuffer buffer, const VkBufferImageCopy& region, bool bufferIsSource) in copy() argument
176 int srcSlicePitchBytes = bufferIsSource ? bufferSlicePitchBytes : imageSlicePitchBytes; in copy()
177 int dstSlicePitchBytes = bufferIsSource ? imageSlicePitchBytes : bufferSlicePitchBytes; in copy()
178 int srcRowPitchBytes = bufferIsSource ? bufferRowPitchBytes : imageRowPitchBytes; in copy()
179 int dstRowPitchBytes = bufferIsSource ? imageRowPitchBytes : bufferRowPitchBytes; in copy()
194 char* srcMemory = bufferIsSource ? bufferMemory : imageMemory; in copy()
195 char* dstMemory = bufferIsSource ? imageMemory : bufferMemory; in copy()
DVkImage.hpp58 void copy(VkBuffer buffer, const VkBufferImageCopy& region, bool bufferIsSource);