Lines Matching defs:info
52 VkInstanceCreateInfo const info = {VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO, nullptr, 0, nullptr, 0, nullptr, 0, nullptr};
53 ASSERT_EQ(env.vulkan_functions.vkCreateInstance(&info, VK_NULL_HANDLE, &inst), VK_SUCCESS);
1406 // Should get an info message for the bad implicit layer
1538 // Should get an info message for the bad implicit
1977 // vkEnumeratePhysicalDeviceGroupsKHR, and make sure they return the same info.
2130 // Make sure all devices in the old group info are still found in the new group info
2217 // Make sure all devices in the new group info are found in the old group info
2302 // Make sure all devices in the old group info are still found in the new group info
2399 // Make sure all devices in the new group info are found in the old group info
2730 VkInstanceCreateInfo info{};
2731 info.sType = VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO;
2732 info.enabledLayerCount = 1;
2734 ASSERT_EQ(env.vulkan_functions.vkCreateInstance(&info, VK_NULL_HANDLE, &inst), VK_ERROR_LAYER_NOT_PRESENT);
2740 VkInstanceCreateInfo info{};
2741 info.sType = VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO;
2742 info.enabledExtensionCount = 1;
2744 ASSERT_EQ(env.vulkan_functions.vkCreateInstance(&info, VK_NULL_HANDLE, &inst), VK_ERROR_EXTENSION_NOT_PRESENT);