Home | History | Annotate | Download | only in image

Lines Matching refs:ImageFormatProperties

225     VkImageFormatProperties ImageFormatProperties;
294 &ImageFormatProperties);
329 if ((pCreateInfo->extent.depth > ImageFormatProperties.maxExtent.depth) ||
330 (pCreateInfo->extent.width > ImageFormatProperties.maxExtent.width) ||
331 (pCreateInfo->extent.height > ImageFormatProperties.maxExtent.height)) {
337 ImageFormatProperties.maxExtent.width, ImageFormatProperties.maxExtent.height,
338 ImageFormatProperties.maxExtent.depth, string_VkFormat(pCreateInfo->format));
347 if (totalSize > ImageFormatProperties.maxResourceSize) {
352 totalSize, ImageFormatProperties.maxResourceSize);
355 if (pCreateInfo->mipLevels > ImageFormatProperties.maxMipLevels) {
359 ImageFormatProperties.maxMipLevels);
362 if (pCreateInfo->arrayLayers > ImageFormatProperties.maxArrayLayers) {
366 pCreateInfo->arrayLayers, ImageFormatProperties.maxArrayLayers);
369 if ((pCreateInfo->samples & ImageFormatProperties.sampleCounts) == 0) {
373 string_VkSampleCountFlagBits(pCreateInfo->samples), ImageFormatProperties.sampleCounts);