Home
last modified time | relevance | path

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

/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
DvkImageUtil.cpp2552 tcu::UVec3 imageAlignment = getImageSizeAlignment(formatDescription); in getMipmapCount() local
2554 if (imageAlignment.x() > 1) in getMipmapCount()
2555 mipmapEdge = std::min(mipmapEdge, extent.width / imageAlignment.x()); in getMipmapCount()
2556 if (imageAlignment.y() > 1) in getMipmapCount()
2557 mipmapEdge = std::min(mipmapEdge, extent.height / imageAlignment.y()); in getMipmapCount()
2558 if (imageAlignment.z() > 1) in getMipmapCount()
2559 mipmapEdge = std::min(mipmapEdge, extent.depth / imageAlignment.z()); in getMipmapCount()