Lines Matching defs:properties
390 VkDisplayPropertiesKHR *properties = &properties2->displayProperties;
392 properties->display = wsi_display_connector_to_handle(connector);
393 properties->displayName = connector->name;
416 properties->physicalResolution.width = preferred_mode->hdisplay;
417 properties->physicalResolution.height = preferred_mode->vdisplay;
419 properties->physicalResolution.width = largest_mode->hdisplay;
420 properties->physicalResolution.height = largest_mode->vdisplay;
422 properties->physicalResolution.width = 1024;
423 properties->physicalResolution.height = 768;
427 properties->physicalDimensions.width =
428 floor(properties->physicalResolution.width * MM_PER_PIXEL + 0.5);
429 properties->physicalDimensions.height =
430 floor(properties->physicalResolution.height * MM_PER_PIXEL + 0.5);
432 properties->supportedTransforms = VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR;
433 properties->planeReorderPossible = VK_FALSE;
434 properties->persistentContent = VK_FALSE;
452 /* If we're actually returning properties, allocate a temporary array of
556 VkDisplayPlaneProperties2KHR *properties)
558 assert(properties->sType == VK_STRUCTURE_TYPE_DISPLAY_PLANE_PROPERTIES_2_KHR);
559 VkDisplayPlanePropertiesKHR *prop = &properties->displayPlaneProperties;
673 VkDisplayModeProperties2KHR *properties)
675 assert(properties->sType == VK_STRUCTURE_TYPE_DISPLAY_MODE_PROPERTIES_2_KHR);
676 VkDisplayModePropertiesKHR *prop = &properties->displayModeProperties;