Searched refs:planeExtent (Results 1 – 7 of 7) sorted by relevance
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/sparse_resources/ |
D | vktSparseResourcesImageSparseResidency.cpp | 112 tcu::UVec3 computeWorkGroupSize (const VkExtent3D& planeExtent) in computeWorkGroupSize() argument 117 …const deUint32 xWorkGroupSize = std::min(std::min(planeExtent.width, maxComputeWorkGroupSize.x()),… in computeWorkGroupSize() 118 …const deUint32 yWorkGroupSize = std::min(std::min(planeExtent.height, maxComputeWorkGroupSize.y())… in computeWorkGroupSize() 119 …const deUint32 zWorkGroupSize = std::min(std::min(planeExtent.depth, maxComputeWorkGroupSize.z()),… in computeWorkGroupSize() 439 …const VkExtent3D planeExtent = getPlaneExtent(formatDescription, imageCreateInfo.extent, planeN… in iterate() local 440 const tcu::UVec3 numSparseBinds = alignedDivide(planeExtent, imageGranularity); in iterate() 441 …onst tcu::UVec3 lastBlockExtent = tcu::UVec3(planeExtent.width % imageGranularity.width ? plan… in iterate() 442 …planeExtent.height % imageGranularity.height ? planeExtent.height % imageGranularity.height : imag… in iterate() 443 …planeExtent.depth % imageGranularity.depth ? planeExtent.depth % imageGranularity.depth : imag… in iterate() 796 …VkExtent3D planeExtent = getPlaneExtent(compatibleFormatDescription, compatibleImageSize,… in iterate() local [all …]
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ycbcr/ |
D | vktYCbCrStorageImageWriteTests.cpp | 108 tcu::UVec3 computeWorkGroupSize(const VkExtent3D& planeExtent) in computeWorkGroupSize() argument 113 …const deUint32 xWorkGroupSize = std::min(std::min(planeExtent.width, maxComputeWorkGroupSize.… in computeWorkGroupSize() 114 …const deUint32 yWorkGroupSize = std::min(std::min(planeExtent.height, maxComputeWorkGroupSize… in computeWorkGroupSize() 115 …const deUint32 zWorkGroupSize = std::min(std::min(planeExtent.depth, maxComputeWorkGroupSize.… in computeWorkGroupSize() 384 …VkExtent3D planeExtent = getPlaneExtent(compatibleFormatDescription, compatibleImageSize… in testStorageImageWrite() local 387 for (deUint32 offsetZ = 0u; offsetZ < planeExtent.depth; ++offsetZ) in testStorageImageWrite() 388 for (deUint32 offsetY = 0u; offsetY < planeExtent.height; ++offsetY) in testStorageImageWrite() 389 for (deUint32 offsetX = 0u; offsetX < planeExtent.width; ++offsetX) in testStorageImageWrite()
|
D | vktYCbCrViewTests.cpp | 437 const UVec2 planeExtent = getPlaneExtent(formatInfo, size, params.planeNdx, 0); in testPlaneView() local 440 ? createTestImage(vkd, device, params.planeCompatibleFormat, planeExtent, createFlags) in testPlaneView() 669 tcu::IVec3((int)planeExtent.x(), (int)planeExtent.y(), 1), in testPlaneView()
|
D | vktYCbCrUtil.cpp | 374 const VkExtent3D planeExtent = getPlaneExtent(formatDesc, imageExtent, planeNdx, 0); in uploadImage() local 382 planeExtent in uploadImage() 588 const VkExtent3D planeExtent = getPlaneExtent(formatDesc, imageExtent, planeNdx, 0); in downloadImage() local 596 planeExtent in downloadImage()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
D | formatutils.cpp | 633 planeExtent[0] = yPlaneExtent; in YuvFormatInfo() 634 planeExtent[1] = {(yPlaneExtent.width / horizontalSubsampleFactor), in YuvFormatInfo() 636 planeExtent[2] = (planeCount > 2) ? planeExtent[1] : Extents(); in YuvFormatInfo() 639 planePitch[0] = planeExtent[0].width * planeBpp[0]; in YuvFormatInfo() 640 planePitch[1] = planeExtent[1].width * planeBpp[1]; in YuvFormatInfo() 641 planePitch[2] = planeExtent[2].width * planeBpp[2]; in YuvFormatInfo() 644 planeSize[0] = planePitch[0] * planeExtent[0].height; in YuvFormatInfo() 645 planeSize[1] = planePitch[1] * planeExtent[1].height; in YuvFormatInfo() 646 planeSize[2] = planePitch[2] * planeExtent[2].height; in YuvFormatInfo()
|
D | formatutils.h | 554 YuvPlaneArray<Extents> planeExtent; member
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
D | vk_helpers.cpp | 5849 gl_vk::GetExtent(yuvInfo.planeExtent[plane], ©.imageExtent); in stageSubresourceUpdateImpl()
|