Home
last modified time | relevance | path

Searched refs:result_to_check (Results 1 – 2 of 2) sorted by relevance

/third_party/vulkan-loader/tests/framework/
Dtest_environment.cpp55 void InstWrapper::CheckCreate(VkResult result_to_check) { in CheckCreate() argument
56 ASSERT_EQ(result_to_check, functions->vkCreateInstance(create_info.get(), callbacks, &inst)); in CheckCreate()
59 …tor<VkPhysicalDevice> InstWrapper::GetPhysDevs(uint32_t phys_dev_count, VkResult result_to_check) { in GetPhysDevs() argument
64 EXPECT_EQ(result_to_check, res); in GetPhysDevs()
68 std::vector<VkPhysicalDevice> InstWrapper::GetPhysDevs(VkResult result_to_check) { in GetPhysDevs() argument
74 EXPECT_EQ(result_to_check, res); in GetPhysDevs()
78 VkPhysicalDevice InstWrapper::GetPhysDev(VkResult result_to_check) { in GetPhysDev() argument
82 EXPECT_EQ(result_to_check, res); in GetPhysDev()
121 void DeviceWrapper::CheckCreate(VkPhysicalDevice phys_dev, VkResult result_to_check) { in CheckCreate() argument
122 …ASSERT_EQ(result_to_check, functions->vkCreateDevice(phys_dev, create_info.get(), callbacks, &dev)… in CheckCreate()
Dtest_environment.h133 void CheckCreate(VkResult result_to_check = VK_SUCCESS);
142 …std::vector<VkPhysicalDevice> GetPhysDevs(VkResult result_to_check = VK_SUCCESS); // query all ph…
144 … VkResult result_to_check = VK_SUCCESS); // query only phys_dev_count devices
146 VkPhysicalDevice GetPhysDev(VkResult result_to_check = VK_SUCCESS);
168 void CheckCreate(VkPhysicalDevice physical_device, VkResult result_to_check = VK_SUCCESS);