Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/
DUtilsD3D12.cpp235 const TextureCopySubresource copyRegions = Compute3DTextureCopySplits( in CopyBufferTo3DTexture() local
238 RecordCopyBufferToTextureFromTextureCopySplit(commandContext->GetCommandList(), copyRegions, in CopyBufferTo3DTexture()
352 const TextureCopySubresource copyRegions = in Copy3DTextureToBuffer() local
356 RecordCopyTextureToBufferFromTextureCopySplit(commandList, copyRegions, buffer, 0, in Copy3DTextureToBuffer()
/third_party/skia/src/gpu/vk/
DGrVkCommandBuffer.h252 const VkImageCopy* copyRegions);
277 const VkBufferImageCopy* copyRegions);
287 const VkBufferImageCopy* copyRegions);
DGrVkCommandBuffer.cpp721 const VkImageCopy* copyRegions) { in copyImage() argument
733 copyRegions)); in copyImage()
785 const VkBufferImageCopy* copyRegions) { in copyImageToBuffer() argument
795 copyRegions)); in copyImageToBuffer()
805 const VkBufferImageCopy* copyRegions) { in copyBufferToImage() argument
815 copyRegions)); in copyBufferToImage()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/
DvktImageSubresourceLayoutTests.cpp448 std::vector<VkBufferImageCopy> copyRegions; in iterateAspect() local
449 copyRegions.reserve(numLevels); in iterateAspect()
470 copyRegions.push_back(region); in iterateAspect()
486 …VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL, static_cast<deUint32>(copyRegions.size()), copyRegions.data(… in iterateAspect()
DvktImageLoadStoreTests.cpp408 std::vector<VkBufferImageCopy> copyRegions; in commandCopyMipmapImageToBuffer() local
421 copyRegions.push_back(copyParams); in commandCopyMipmapImageToBuffer()
430 …ge, VK_IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL, buffer, (deUint32) copyRegions.size(), copyRegions.data(… in commandCopyMipmapImageToBuffer()
1769 std::vector<VkBufferImageCopy> copyRegions; in commandBeforeCompute() local
1782 copyRegions.push_back(copyParams); in commandBeforeCompute()
1786 …Src->get(), VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL, (deUint32) copyRegions.size(), copyRegions.data(… in commandBeforeCompute()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/descriptor_indexing/
DvktDescriptorSetsIndexingTestsUtils.cpp269 std::vector<VkBufferImageCopy> copyRegions; in recordCopyBufferToImage() local
294 copyRegions.push_back(copyRegion); in recordCopyBufferToImage()
360 …VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL, static_cast<deUint32>(copyRegions.size()), copyRegions.data(… in recordCopyBufferToImage()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
DBufferVk.cpp1058 angle::FixedVector<VkBufferCopy, kMaxCopyRegions> copyRegions; in acquireAndUpdate() local
1069 copyRegions.push_back({0, mBufferOffset, offset}); in acquireAndUpdate()
1083 copyRegions.push_back( in acquireAndUpdate()
1088 if (!copyRegions.empty()) in acquireAndUpdate()
1090 ANGLE_TRY(mBuffer->copyFromBuffer(contextVk, src, static_cast<uint32_t>(copyRegions.size()), in acquireAndUpdate()
1091 copyRegions.data())); in acquireAndUpdate()
Dvk_helpers.h886 const VkBufferCopy *copyRegions);
Dvk_helpers.cpp3820 const VkBufferCopy *copyRegions) in copyFromBuffer() argument
3837 commandBuffer->copyBuffer(srcBuffer->getBuffer(), mBuffer, regionCount, copyRegions); in copyFromBuffer()
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
DvkImageUtil.hpp215 const std::vector<vk::VkBufferImageCopy>& copyRegions,
228 const std::vector<VkBufferImageCopy>& copyRegions,
DvkImageUtil.cpp4157 const std::vector<VkBufferImageCopy>& copyRegions, in copyBufferToImage() argument
4221 …, destImage, VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL, (deUint32)copyRegions.size(), copyRegions.data(… in copyBufferToImage()
4231 const std::vector<VkBufferImageCopy>& copyRegions, in copyBufferToImage() argument
4253 …copyBufferToImage(vk, *cmdBuffer, buffer, bufferSize, copyRegions, imageAspectFlags, mipLevels, ar… in copyBufferToImage()
4521 std::vector<VkBufferImageCopy> copyRegions; in generateChessboardCopyRegions() local
4563 copyRegions.push_back(copy); in generateChessboardCopyRegions()
4566 return copyRegions; in generateChessboardCopyRegions()
4671 …std::vector<VkBufferImageCopy> copyRegions = generateChessboardCopyRegions(tileSize, imageWidth, i… in initColorImageChessboardPattern() local
4673 …Idx], image, VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL, (deUint32)copyRegions.size(), copyRegions.data(… in initColorImageChessboardPattern()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/api/
DvktApiImageClearingTests.cpp1108 std::vector<VkBufferImageCopy> copyRegions; in readImage() local
1123 copyRegions.push_back(region); in readImage()
1138 …_LAYOUT_TRANSFER_SRC_OPTIMAL, *buffer, static_cast<deUint32>(copyRegions.size()), &copyRegions[0]); in readImage()
1339 std::vector<VkBufferImageCopy> copyRegions; in preClearImage() local
1370 copyRegions.push_back(region); in preClearImage()
1383 … VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL, static_cast<deUint32>(copyRegions.size()), &copyRegions[0]); in preClearImage()
DvktApiCopiesAndBlittingTests.cpp639 std::vector <VkBufferImageCopy> copyRegions; in uploadImageAspect() local
748 copyRegions.push_back(copyRegion); in uploadImageAspect()
759 …uffer, image, VK_IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL, (deUint32)copyRegions.size(), &copyRegions[0]); in uploadImageAspect()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineImageUtil.cpp417 std::vector<VkBufferImageCopy> copyRegions = srcTexture.getBufferCopyRegions(); in uploadTestTextureInternal() local
464 copyRegions.push_back(region); in uploadTestTextureInternal()
471 …copyBufferToImage(vk, device, queue, queueFamilyIndex, *buffer, bufferSize, copyRegions, DE_NULL, … in uploadTestTextureInternal()
506 std::vector<VkBufferImageCopy> copyRegions = srcTexture.getBufferCopyRegions(); in uploadTestTextureInternalSparse() local
557 copyRegions.push_back(region); in uploadTestTextureInternalSparse()
564 …evice, universalQueue, universalQueueFamilyIndex, *buffer, bufferSize, copyRegions, &(*imageMemory… in uploadTestTextureInternalSparse()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsmComputeShaderCase.cpp556 vector<VkBufferImageCopy> copyRegions; in iterate() local
557 copyRegions.push_back(copyRegion); in iterate()
559 …i, device, queue, queueFamilyIndex, buffer->get(), (deUint32)numBytes, copyRegions, DE_NULL, VK_IM… in iterate()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/texture/
DvktTextureFilteringExplicitLodTests.cpp323 std::vector<VkBufferImageCopy> copyRegions; in initializeImage() local
357 copyRegions.push_back(curRegion); in initializeImage()
364 …versalQueue(), ctx.getUniversalQueueFamilyIndex(), buf.get(), bufSize, copyRegions, DE_NULL, VK_IM… in initializeImage()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/geometry/
DvktGeometryBasicGeometryShaderTests.cpp148 vector<VkBufferImageCopy> copyRegions (1, copyRegion); in uploadImage() local
157 …copyBufferToImage(vk, device, queue, queueFamilyIndex, *buffer, bufferSize, copyRegions, DE_NULL, … in uploadImage()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/
DvktShaderRender.cpp999 std::vector<VkBufferImageCopy> copyRegions; in uploadImage() local
1071 copyRegions.push_back(layerRegion); in uploadImage()
1081 …copyBufferToImage(vk, vkDevice, queue, queueFamilyIndex, *buffer, bufferSize, copyRegions, DE_NULL… in uploadImage()
1265 std::vector<VkBufferImageCopy> copyRegions; in uploadSparseImage() local
1343 copyRegions.push_back(layerRegion); in uploadSparseImage()
1350 …copyBufferToImage(vk, vkDevice, queue, queueFamilyIndex, *buffer, bufferSize, copyRegions, &(*imag… in uploadSparseImage()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/sparse_resources/
DvktSparseResourcesBufferTests.cpp1213 const VkBufferCopy copyRegions[] = in iterate() local
1231 …ffer (*cmdBuffer, *m_stagingBuffer, *m_sparseBuffer, DE_LENGTH_OF_ARRAY(copyRegions), copyRegions); in iterate()