Searched refs:bufferIsSource (Results 1 – 2 of 2) sorted by relevance
157 void Image::copy(VkBuffer buffer, const VkBufferImageCopy& region, bool bufferIsSource) in copy() argument176 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()
58 void copy(VkBuffer buffer, const VkBufferImageCopy& region, bool bufferIsSource);