Home | History | Annotate | Download | only in vk

Lines Matching defs:props

471         VkPhysicalDeviceProperties2 props;
472 props.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2;
473 props.pNext = &blendProps;
475 GR_VK_CALL(vkInterface, GetPhysicalDeviceProperties2(physDev, &props));
563 VkFormatProperties props;
564 memset(&props, 0, sizeof(VkFormatProperties));
565 GR_VK_CALL(interface, GetPhysicalDeviceFormatProperties(physDev, format, &props));
566 return SkToBool(VK_FORMAT_FEATURE_DEPTH_STENCIL_ATTACHMENT_BIT & props.optimalTilingFeatures);
670 VkFormatProperties props;
671 memset(&props, 0, sizeof(VkFormatProperties));
672 GR_VK_CALL(interface, GetPhysicalDeviceFormatProperties(physDev, format, &props));
673 InitConfigFlags(props.linearTilingFeatures, &fLinearFlags);
674 InitConfigFlags(props.optimalTilingFeatures, &fOptimalFlags);