Lines Matching refs:properties
431 std::unique_ptr<VkLayerProperties[]> properties(new VkLayerProperties[count]); in TEST_F() local
433 result = vkEnumerateInstanceLayerProperties(&count, properties.get()); in TEST_F()
462 std::unique_ptr<VkLayerProperties[]> properties(new VkLayerProperties[count]); in TEST() local
464 result = vkEnumerateDeviceLayerProperties(physical[p], &count, properties.get()); in TEST()
489 std::unique_ptr<VkLayerProperties[]> properties(new VkLayerProperties[count]); in TEST_F() local
490 VkResult result = vkEnumerateInstanceLayerProperties(&count, properties.get()); in TEST_F()
495 …std::cout << "properties[" << p << "] =" << ' ' << properties[p].layerName << ' ' << properties[p]… in TEST_F()
496 … << properties[p].implementationVersion << ' ' << properties[p].description << '\n'; in TEST_F()
506 std::unique_ptr<VkLayerProperties[]> properties(new VkLayerProperties[count]); in TEST_F() local
507 result = vkEnumerateInstanceLayerProperties(&count, properties.get()); in TEST_F()
512 …std::cout << "properties[" << p << "] =" << ' ' << properties[p].layerName << ' ' << properties[p]… in TEST_F()
513 … << properties[p].implementationVersion << ' ' << properties[p].description << '\n'; in TEST_F()
528 std::unique_ptr<VkExtensionProperties[]> properties(new VkExtensionProperties[count]); in TEST_F() local
530 result = vkEnumerateInstanceExtensionProperties(nullptr, &count, properties.get()); in TEST_F()
559 std::unique_ptr<VkExtensionProperties[]> properties(new VkExtensionProperties[count]); in TEST() local
561 … result = vkEnumerateDeviceExtensionProperties(physical[p], nullptr, &count, properties.get()); in TEST()
586 std::unique_ptr<VkExtensionProperties[]> properties(new VkExtensionProperties[count]); in TEST_F() local
587 VkResult result = vkEnumerateInstanceExtensionProperties(nullptr, &count, properties.get()); in TEST_F()
592 …std::cout << "properties[" << p << "] =" << ' ' << properties[p].extensionName << ' ' << propertie… in TEST_F()
603 std::unique_ptr<VkExtensionProperties[]> properties(new VkExtensionProperties[count]); in TEST_F() local
604 result = vkEnumerateInstanceExtensionProperties(nullptr, &count, properties.get()); in TEST_F()
609 …std::cout << "properties[" << p << "] =" << ' ' << properties[p].extensionName << ' ' << propertie… in TEST_F()
620 std::unique_ptr<VkExtensionProperties[]> properties(new VkExtensionProperties[count]); in TEST_F() local
621 result = vkEnumerateInstanceExtensionProperties(nullptr, &count, properties.get()); in TEST_F()
625 &properties[0], &properties[count], in TEST_F()
626 …[](VkExtensionProperties const &properties) { return strcmp(properties.extensionName, "VK_KHR_surf… in TEST_F() argument
627 &properties[count]); in TEST_F()
650 std::unique_ptr<VkExtensionProperties[]> properties(new VkExtensionProperties[count]); in TEST() local
651 … result = vkEnumerateDeviceExtensionProperties(physical[p], nullptr, &count, properties.get()); in TEST()
654 ASSERT_NE(std::find_if(&properties[0], &properties[count], in TEST()
655 [](VkExtensionProperties const &properties) { in TEST() argument
656 return strcmp(properties.extensionName, "VK_KHR_swapchain") == 0; in TEST()
658 &properties[count]); in TEST()