Lines Matching defs:properties
611 const vk::VkSurfaceCapabilitiesKHR& properties,
617 const vk::VkImageUsageFlags imageUsage = properties.supportedUsageFlags;
620 const deUint32 imageWidth = (properties.currentExtent.width != 0xFFFFFFFFu)
621 ? properties.currentExtent.width
622 : de::min(1024u, properties.minImageExtent.width + ((properties.maxImageExtent.width - properties.minImageExtent.width) / 2));
623 const deUint32 imageHeight = (properties.currentExtent.height != 0xFFFFFFFFu)
624 ? properties.currentExtent.height
625 : de::min(1024u, properties.minImageExtent.height + ((properties.maxImageExtent.height - properties.minImageExtent.height) / 2));
643 for (transform = 1u; transform <= properties.supportedTransforms; transform = transform << 1u)
645 if ((properties.supportedTransforms & transform) != 0)
650 for (alpha = 1u; alpha <= properties.supportedCompositeAlpha; alpha = alpha << 1u)
652 if ((alpha & properties.supportedCompositeAlpha) != 0)
667 properties.minImageCount,