Home | History | Annotate | Download | only in layers

Lines Matching refs:ImageFormatProperties

226     VkImageFormatProperties ImageFormatProperties;
295 &ImageFormatProperties);
330 if ((pCreateInfo->extent.depth > ImageFormatProperties.maxExtent.depth) ||
331 (pCreateInfo->extent.width > ImageFormatProperties.maxExtent.width) ||
332 (pCreateInfo->extent.height > ImageFormatProperties.maxExtent.height)) {
338 ImageFormatProperties.maxExtent.width, ImageFormatProperties.maxExtent.height,
339 ImageFormatProperties.maxExtent.depth, string_VkFormat(pCreateInfo->format));
348 if (totalSize > ImageFormatProperties.maxResourceSize) {
353 totalSize, ImageFormatProperties.maxResourceSize);
356 if (pCreateInfo->mipLevels > ImageFormatProperties.maxMipLevels) {
360 ImageFormatProperties.maxMipLevels);
363 if (pCreateInfo->arrayLayers > ImageFormatProperties.maxArrayLayers) {
367 pCreateInfo->arrayLayers, ImageFormatProperties.maxArrayLayers);
370 if ((pCreateInfo->samples & ImageFormatProperties.sampleCounts) == 0) {
374 string_VkSampleCountFlagBits(pCreateInfo->samples), ImageFormatProperties.sampleCounts);