Lines Matching defs:properties
687 const vk::VkSurfaceCapabilitiesKHR& properties,
699 const deUint32 currentWidth = properties.currentExtent.width != 0xFFFFFFFFu
700 ? properties.currentExtent.width
701 : de::min(1024u, properties.minImageExtent.width + ((properties.maxImageExtent.width - properties.minImageExtent.width) / 2));
702 const deUint32 currentHeight = properties.currentExtent.height != 0xFFFFFFFFu
703 ? properties.currentExtent.height
704 : de::min(1024u, properties.minImageExtent.height + ((properties.maxImageExtent.height - properties.minImageExtent.height) / 2));
709 ? de::max(31u, properties.minImageExtent.width)
710 : de::min(deSmallestGreaterOrEquallPowerOfTwoU32(currentWidth+1), properties.maxImageExtent.width));
714 ? de::max(31u, properties.minImageExtent.height)
715 : de::min(deSmallestGreaterOrEquallPowerOfTwoU32(currentHeight+1), properties.maxImageExtent.height));
717 const vk::VkExtent2D unusedSize = { de::max(31u, properties.minImageExtent.width), de::max(31u, properties.minImageExtent.height) };
731 if ((properties.supportedTransforms & transform) == 0)
734 if ((properties.supportedCompositeAlpha & alpha) == 0)
751 properties.minImageCount,
776 properties.minImageCount,