Lines Matching defs:props
667 VkPhysicalDeviceProperties2 props;
668 props.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2;
669 props.pNext = &blendProps;
671 GR_VK_CALL(vkInterface, GetPhysicalDeviceProperties2(physDev, &props));
745 VkFormatProperties props;
746 memset(&props, 0, sizeof(VkFormatProperties));
747 GR_VK_CALL(interface, GetPhysicalDeviceFormatProperties(physDev, format, &props));
748 return SkToBool(VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT & props.optimalTilingFeatures);
1413 VkFormatProperties props;
1414 memset(&props, 0, sizeof(VkFormatProperties));
1415 GR_VK_CALL(interface, GetPhysicalDeviceFormatProperties(physDev, format, &props));
1416 InitFormatFlags(props.linearTilingFeatures, &fLinearFlags);
1417 InitFormatFlags(props.optimalTilingFeatures, &fOptimalFlags);