Lines Matching refs:ImageFormatProperties
271 VkImageFormatProperties ImageFormatProperties; in vkCreateImage() local
293 &ImageFormatProperties); in vkCreateImage()
298 if ((pCreateInfo->extent.depth > ImageFormatProperties.maxExtent.depth) || in vkCreateImage()
299 (pCreateInfo->extent.width > ImageFormatProperties.maxExtent.width) || in vkCreateImage()
300 (pCreateInfo->extent.height > ImageFormatProperties.maxExtent.height)) { in vkCreateImage()
306 … ImageFormatProperties.maxExtent.width, ImageFormatProperties.maxExtent.height, in vkCreateImage()
307 … ImageFormatProperties.maxExtent.depth, string_VkFormat(pCreateInfo->format)); in vkCreateImage()
316 if (totalSize > ImageFormatProperties.maxResourceSize) { in vkCreateImage()
321 totalSize, ImageFormatProperties.maxResourceSize); in vkCreateImage()
324 if (pCreateInfo->mipLevels > ImageFormatProperties.maxMipLevels) { in vkCreateImage()
328 ImageFormatProperties.maxMipLevels); in vkCreateImage()
331 if (pCreateInfo->arrayLayers > ImageFormatProperties.maxArrayLayers) { in vkCreateImage()
335 pCreateInfo->arrayLayers, ImageFormatProperties.maxArrayLayers); in vkCreateImage()
338 if ((pCreateInfo->samples & ImageFormatProperties.sampleCounts) == 0) { in vkCreateImage()
342 … string_VkSampleCountFlagBits(pCreateInfo->samples), ImageFormatProperties.sampleCounts); in vkCreateImage()