Lines Matching refs:maxExtent

1877 				const deUint32	fullMipPyramidSize	= de::max(de::max(deLog2Ceil32(properties.maxExtent.width),
1878 deLog2Ceil32(properties.maxExtent.height)),
1879 deLog2Ceil32(properties.maxExtent.depth)) + 1;
1883 results.check(imageType != VK_IMAGE_TYPE_1D || (properties.maxExtent.width >= 1 && properties.maxExtent.height == 1 && properties.maxExtent.depth == 1), "Invalid dimensions for 1D image");
1884 results.check(imageType != VK_IMAGE_TYPE_2D || (properties.maxExtent.width >= 1 && properties.maxExtent.height >= 1 && properties.maxExtent.depth == 1), "Invalid dimensions for 2D image");
1885 results.check(imageType != VK_IMAGE_TYPE_3D || (properties.maxExtent.width >= 1 && properties.maxExtent.height >= 1 && properties.maxExtent.depth >= 1), "Invalid dimensions for 3D image");
1916 results.check(imageType != VK_IMAGE_TYPE_1D || (properties.maxExtent.width >= deviceLimits.maxImageDimension1D),
1918 results.check(imageType != VK_IMAGE_TYPE_2D || (properties.maxExtent.width >= deviceLimits.maxImageDimension2D &&
1919 properties.maxExtent.height >= deviceLimits.maxImageDimension2D),
1921 results.check(imageType != VK_IMAGE_TYPE_3D || (properties.maxExtent.width >= deviceLimits.maxImageDimension3D &&
1922 properties.maxExtent.height >= deviceLimits.maxImageDimension3D &&
1923 properties.maxExtent.depth >= deviceLimits.maxImageDimension3D),
1946 results.check(properties.maxExtent.width == 0, "maxExtent.width != 0");
1947 results.check(properties.maxExtent.height == 0, "maxExtent.height != 0");
1948 results.check(properties.maxExtent.depth == 0, "maxExtent.depth != 0");