Lines Matching refs:maxExtent

4400 				const deUint32	fullMipPyramidSize	= de::max(de::max(deLog2Floor32(properties.maxExtent.width),
4401 deLog2Floor32(properties.maxExtent.height)),
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");
4422 results.check(imageType != VK_IMAGE_TYPE_1D || (properties.maxExtent.width >= deviceLimits.maxImageDimension1D),
4424 results.check(imageType != VK_IMAGE_TYPE_2D || (properties.maxExtent.width >= deviceLimits.maxImageDimension2D &&
4425 properties.maxExtent.height >= deviceLimits.maxImageDimension2D),
4427 results.check(imageType != VK_IMAGE_TYPE_3D || (properties.maxExtent.width >= deviceLimits.maxImageDimension3D &&
4428 properties.maxExtent.height >= deviceLimits.maxImageDimension3D &&
4429 properties.maxExtent.depth >= deviceLimits.maxImageDimension3D),
4453 results.check(properties.maxExtent.width == 0, "maxExtent.width != 0");
4454 results.check(properties.maxExtent.height == 0, "maxExtent.height != 0");
4455 results.check(properties.maxExtent.depth == 0, "maxExtent.depth != 0");