Lines Matching refs:depth
3699 // \todo [2017-05-16 pyry] This should be extended to cover for example COLOR_ATTACHMENT for depth formats etc.
3894 return tcu::TestStatus::pass("Required depth/stencil formats supported");
4194 // Support for 1D and 3D depth/stencil textures is optional
4402 deLog2Floor32(properties.maxExtent.depth)) + 1;
4406 results.check(imageType != VK_IMAGE_TYPE_1D || (properties.maxExtent.width >= 1 && properties.maxExtent.height == 1 && properties.maxExtent.depth == 1), "Invalid dimensions for 1D image");
4407 results.check(imageType != VK_IMAGE_TYPE_2D || (properties.maxExtent.width >= 1 && properties.maxExtent.height >= 1 && properties.maxExtent.depth == 1), "Invalid dimensions for 2D image");
4408 results.check(imageType != VK_IMAGE_TYPE_3D || (properties.maxExtent.width >= 1 && properties.maxExtent.height >= 1 && properties.maxExtent.depth >= 1), "Invalid dimensions for 3D image");
4429 properties.maxExtent.depth >= deviceLimits.maxImageDimension3D),
4455 results.check(properties.maxExtent.depth == 0, "maxExtent.depth != 0");