Lines Matching refs:physDev
20 VkPhysicalDevice physDev, const VkPhysicalDeviceFeatures2& features, in GrVkCaps() argument
52 this->init(contextOptions, vkInterface, physDev, features, physicalDeviceVersion, extensions); in GrVkCaps()
272 VkPhysicalDevice physDev, const VkPhysicalDeviceFeatures2& features, in init() argument
276 GR_VK_CALL(vkInterface, GetPhysicalDeviceProperties(physDev, &properties)); in init()
279 GR_VK_CALL(vkInterface, GetPhysicalDeviceMemoryProperties(physDev, &memoryProperties)); in init()
358 this->initGrCaps(vkInterface, physDev, properties, memoryProperties, features, extensions); in init()
378 this->initConfigTable(vkInterface, physDev, properties); in init()
379 this->initStencilFormat(vkInterface, physDev); in init()
468 VkPhysicalDevice physDev, in initGrCaps() argument
514 GR_VK_CALL(vkInterface, GetPhysicalDeviceProperties2(physDev, &props)); in initGrCaps()
600 VkPhysicalDevice physDev, in stencil_format_supported() argument
604 GR_VK_CALL(interface, GetPhysicalDeviceFormatProperties(physDev, format, &props)); in stencil_format_supported()
608 void GrVkCaps::initStencilFormat(const GrVkInterface* interface, VkPhysicalDevice physDev) { in initStencilFormat() argument
619 if (stencil_format_supported(interface, physDev, VK_FORMAT_S8_UINT)) { in initStencilFormat()
621 } else if (stencil_format_supported(interface, physDev, VK_FORMAT_D24_UNORM_S8_UINT)) { in initStencilFormat()
624 SkASSERT(stencil_format_supported(interface, physDev, VK_FORMAT_D32_SFLOAT_S8_UINT)); in initStencilFormat()
629 void GrVkCaps::initConfigTable(const GrVkInterface* interface, VkPhysicalDevice physDev, in initConfigTable() argument
635 fConfigTable[i].init(interface, physDev, properties, format); in initConfigTable()
662 VkPhysicalDevice physDev, in initSampleCounts() argument
670 GR_VK_CALL(interface, GetPhysicalDeviceImageFormatProperties(physDev, in initSampleCounts()
706 VkPhysicalDevice physDev, in init() argument
711 GR_VK_CALL(interface, GetPhysicalDeviceFormatProperties(physDev, format, &props)); in init()
715 this->initSampleCounts(interface, physDev, properties, format); in init()