Home
last modified time | relevance | path

Searched refs:subresourceLayout (Results 1 – 3 of 3) sorted by relevance

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/external/vulkancts/modules/vulkan/image/
H A DvktImageSubresourceLayoutTests.cpp495 VkSubresourceLayout subresourceLayout; in iterateAspect() local
525 …if ((subresourceLayout.offset - levelSubresourceLayout.offset) != (layerNdx * subresourceLayout.ar… in iterateAspect()
532 << ", layer offset " << subresourceLayout.offset in iterateAspect()
533 << ", array pitch " << subresourceLayout.arrayPitch; in iterateAspect()
537 if (subresourceLayout.size < pixelSize * numPixels) in iterateAspect()
543 << " reports " << subresourceLayout.size << " bytes in size" in iterateAspect()
556 << " reports row pitch of " << subresourceLayout.rowPitch in iterateAspect()
562 if (numLayers > 1u && subresourceLayout.arrayPitch < pixelSize * numPixels) in iterateAspect()
568 << " reports array pitch of " << subresourceLayout.arrayPitch in iterateAspect()
589 const auto layerImageOffset = subresourceLayout.offset; in iterateAspect()
[all …]
/dports/x11-wm/chamfer/chamferwm-d0916ee/src/
H A DCompositorResource.cpp229 VkSubresourceLayout subresourceLayout = {}; in Attach() local
230 subresourceLayout.offset = 0; in Attach()
231subresourceLayout.size = (uint)pbufferFromPixmapReply->size;//(uint)pbufferFromPixmapReply->stride… in Attach()
232 subresourceLayout.rowPitch = (uint)pbufferFromPixmapReply->stride; in Attach()
233 subresourceLayout.arrayPitch = subresourceLayout.size; in Attach()
234 subresourceLayout.depthPitch = subresourceLayout.size; in Attach()
244 imageDrmFormatModifierExpCreateInfo.pPlaneLayouts = &subresourceLayout; in Attach()
/dports/graphics/vulkan-headers/Vulkan-Headers-1.2.203/include/vulkan/
H A Dvulkan_hash.hpp4800 …operator()( VULKAN_HPP_NAMESPACE::SubresourceLayout const & subresourceLayout ) const VULKAN_HPP_N… in operator ()()
4803 VULKAN_HPP_HASH_COMBINE( seed, subresourceLayout.offset ); in operator ()()
4804 VULKAN_HPP_HASH_COMBINE( seed, subresourceLayout.size ); in operator ()()
4805 VULKAN_HPP_HASH_COMBINE( seed, subresourceLayout.rowPitch ); in operator ()()
4806 VULKAN_HPP_HASH_COMBINE( seed, subresourceLayout.arrayPitch ); in operator ()()
4807 VULKAN_HPP_HASH_COMBINE( seed, subresourceLayout.depthPitch ); in operator ()()