/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
D | CommandGraph.h | 197 ANGLE_INLINE void addGlobalMemoryBarrier(VkFlags srcAccess, in addGlobalMemoryBarrier() argument 201 mGlobalMemoryBarrierSrcAccess |= srcAccess; in addGlobalMemoryBarrier() 411 void addGlobalMemoryBarrier(VkFlags srcAccess, VkFlags dstAccess, VkPipelineStageFlags stages) in addGlobalMemoryBarrier() argument 414 mCurrentWritingNode->addGlobalMemoryBarrier(srcAccess, dstAccess, stages); in addGlobalMemoryBarrier() 500 void memoryBarrier(VkFlags srcAccess, VkFlags dstAccess, VkPipelineStageFlags stages);
|
D | CommandGraph.cpp | 998 void CommandGraph::memoryBarrier(VkFlags srcAccess, VkFlags dstAccess, VkPipelineStageFlags stages) in memoryBarrier() argument 1002 newNode->addGlobalMemoryBarrier(srcAccess, dstAccess, stages); in memoryBarrier()
|
D | ContextVk.cpp | 2208 VkAccessFlags srcAccess = 0; in memoryBarrier() local 2213 srcAccess |= VK_ACCESS_SHADER_WRITE_BIT; in memoryBarrier() 2217 mCommandGraph.memoryBarrier(srcAccess, dstAccess, VK_PIPELINE_STAGE_ALL_COMMANDS_BIT); in memoryBarrier()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
D | vktPipelineImageUtil.cpp | 931 const tcu::ConstPixelBufferAccess srcAccess = getLevel(levelNdx, layerNdx); in write() local 932 …const tcu::PixelBufferAccess destAccess (srcAccess.getFormat(), srcAccess.getSize(), srcAccess.g… in write() 934 tcu::copy(destAccess, srcAccess); in write() 935 …levelOffset += srcAccess.getWidth() * srcAccess.getHeight() * srcAccess.getDepth() * srcAccess.get… in write()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/binding_model/ |
D | vktBindingShaderAccessTests.cpp | 289 const tcu::ConstPixelBufferAccess srcAccess = srcImage.getLevel(level); in getTextureLevelPyramidDataSize() local 292 DE_ASSERT(srcAccess.getFormat().getPixelSize() == srcAccess.getPixelPitch()); in getTextureLevelPyramidDataSize() 294 …dataSize += srcAccess.getWidth() * srcAccess.getHeight() * srcAccess.getDepth() * srcAccess.getFor… in getTextureLevelPyramidDataSize() 313 const tcu::ConstPixelBufferAccess srcAccess = srcImage.getLevel(level); in writeTextureLevelPyramidData() local 314 …const tcu::PixelBufferAccess dstAccess (srcAccess.getFormat(), srcAccess.getSize(), srcAccess.ge… in writeTextureLevelPyramidData() 315 …const deUint32 dataSize = srcAccess.getWidth() * srcAccess.getHeight() * srcAccess.getDepth(… in writeTextureLevelPyramidData() 317 …IMAGE_VIEW_TYPE_1D || viewType == vk::VK_IMAGE_VIEW_TYPE_1D_ARRAY) ? (1) : (srcAccess.getHeight()); in writeTextureLevelPyramidData() 318 …const deInt32 sliceDepth = (viewType == vk::VK_IMAGE_VIEW_TYPE_3D) ? (srcAccess.getDepth()) … in writeTextureLevelPyramidData() 319 const tcu::IVec3 sliceSize (srcAccess.getWidth(), sliceHeight, sliceDepth); in writeTextureLevelPyramidData() 322 DE_ASSERT(srcAccess.getFormat().getPixelSize() == srcAccess.getPixelPitch()); in writeTextureLevelPyramidData() [all …]
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/mesh_shader/ |
D | vktMeshShaderSyncTests.cpp | 1063 …const auto srcAccess = (VK_ACCESS_COLOR_ATTACHMENT_READ_BIT | VK_ACCESS_COLOR_ATTACHMENT_WRITE_BIT… in iterate() local 1065 …const auto colorBarrier = makeImageMemoryBarrier(srcAccess, dstAccess, VK_IMAGE_LAYOUT_COLOR_ATTAC… in iterate()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/memory/ |
D | vktMemoryBindingTests.cpp | 386 VkAccessFlags srcAccess, in makeMemoryBarrierInfo() argument 396 srcAccess, // VkAccessFlags srcAccessMask; in makeMemoryBarrierInfo()
|
/third_party/vk-gl-cts/modules/gles31/functional/ |
D | es31fShaderImageLoadStoreTests.cpp | 692 const PixelBufferAccess srcAccess = getAccessInternal(); in getSliceAccessInternal() local 693 return tcu::getSubregion(srcAccess, 0, 0, slice, srcAccess.getWidth(), srcAccess.getHeight(), 1); in getSliceAccessInternal()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
D | vk_helpers.h | 803 VkAccessFlags srcAccess, in mergeMemoryBarrier() argument 808 mMemoryBarrierSrcAccess |= srcAccess; in mergeMemoryBarrier()
|