Home
last modified time | relevance | path

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

/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
DCommandGraph.h197 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);
DCommandGraph.cpp998 void CommandGraph::memoryBarrier(VkFlags srcAccess, VkFlags dstAccess, VkPipelineStageFlags stages) in memoryBarrier() argument
1002 newNode->addGlobalMemoryBarrier(srcAccess, dstAccess, stages); in memoryBarrier()
DContextVk.cpp2208 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/
DvktPipelineImageUtil.cpp931 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/
DvktBindingShaderAccessTests.cpp289 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/
DvktMeshShaderSyncTests.cpp1063 …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/
DvktMemoryBindingTests.cpp386 VkAccessFlags srcAccess, in makeMemoryBarrierInfo() argument
396 srcAccess, // VkAccessFlags srcAccessMask; in makeMemoryBarrierInfo()
/third_party/vk-gl-cts/modules/gles31/functional/
Des31fShaderImageLoadStoreTests.cpp692 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/
Dvk_helpers.h803 VkAccessFlags srcAccess, in mergeMemoryBarrier() argument
808 mMemoryBarrierSrcAccess |= srcAccess; in mergeMemoryBarrier()