Searched refs:baseExtents (Results 1 - 5 of 5) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineMultisampleTestsUtil.hpp76 vk::VkExtent3D mipLevelExtents (const vk::VkExtent3D& baseExtents, const deUint32 mipLevel);
77 tcu::UVec3 mipLevelExtents (const tcu::UVec3& baseExtents, const deUint32 mipLevel);
78 deUint32 getImageMipLevelSizeInBytes (const vk::VkExtent3D& baseExtents, const deUint32 layersCount, const tcu::TextureFormat& format, const deUint32 mipmapLevel, const deUint32 numSamples = 1u);
79 deUint32 getImageSizeInBytes (const vk::VkExtent3D& baseExtents, const deUint32 layersCount, const tcu::TextureFormat& format, const deUint32 mipmapLevelsCount = 1u, const deUint32 numSamples = 1u);
H A DvktPipelineMultisampleTestsUtil.cpp356 VkExtent3D mipLevelExtents (const VkExtent3D& baseExtents, const deUint32 mipLevel) argument
360 result.width = std::max(baseExtents.width >> mipLevel, 1u);
361 result.height = std::max(baseExtents.height >> mipLevel, 1u);
362 result.depth = std::max(baseExtents.depth >> mipLevel, 1u);
374 deUint32 getImageMipLevelSizeInBytes (const VkExtent3D& baseExtents, const deUint32 layersCount, const tcu::TextureFormat& format, const deUint32 mipmapLevel, const deUint32 numSamples) argument
376 const VkExtent3D extents = mipLevelExtents(baseExtents, mipmapLevel);
381 deUint32 getImageSizeInBytes (const VkExtent3D& baseExtents, const deUint32 layersCount, const tcu::TextureFormat& format, const deUint32 mipmapLevelsCount, const deUint32 numSamples) argument
386 imageSizeInBytes += getImageMipLevelSizeInBytes(baseExtents, layersCount, format, mipmapLevel, numSamples);
/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
H A DvktSparseResourcesTestsUtil.hpp125 vk::VkExtent3D mipLevelExtents (const vk::VkExtent3D& baseExtents,
128 tcu::UVec3 mipLevelExtents (const tcu::UVec3& baseExtents,
134 deUint32 getImageMipLevelSizeInBytes (const vk::VkExtent3D& baseExtents,
140 deUint32 getImageSizeInBytes (const vk::VkExtent3D& baseExtents,
H A DvktSparseResourcesTestsUtil.cpp771 VkExtent3D mipLevelExtents (const VkExtent3D& baseExtents, const deUint32 mipLevel) argument
775 result.width = std::max(baseExtents.width >> mipLevel, 1u);
776 result.height = std::max(baseExtents.height >> mipLevel, 1u);
777 result.depth = std::max(baseExtents.depth >> mipLevel, 1u);
789 deUint32 getImageMipLevelSizeInBytes(const VkExtent3D& baseExtents, const deUint32 layersCount, const tcu::TextureFormat& format, const deUint32 mipmapLevel, const deUint32 mipmapMemoryAlignment) argument
791 const VkExtent3D extents = mipLevelExtents(baseExtents, mipmapLevel);
796 deUint32 getImageSizeInBytes(const VkExtent3D& baseExtents, const deUint32 layersCount, const tcu::TextureFormat& format, const deUint32 mipmapLevelsCount, const deUint32 mipmapMemoryAlignment) argument
800 imageSizeInBytes += getImageMipLevelSizeInBytes(baseExtents, layersCount, format, mipmapLevel, mipmapMemoryAlignment);
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
H A DvktShaderRender.cpp1345 VkExtent3D mipLevelExtents (const VkExtent3D& baseExtents, const deUint32 mipLevel) argument
1349 result.width = std::max(baseExtents.width >> mipLevel, 1u);
1350 result.height = std::max(baseExtents.height >> mipLevel, 1u);
1351 result.depth = std::max(baseExtents.depth >> mipLevel, 1u);

Completed in 99 milliseconds