Lines Matching refs:test_device
1555 VkDeviceObj test_device(0, gpu(), device_extension_names, &features); in TEST_F() local
1559 pool_create_info.queueFamilyIndex = test_device.graphics_queue_node_index_; in TEST_F()
1562 vkCreateCommandPool(test_device.handle(), &pool_create_info, nullptr, &command_pool); in TEST_F()
1572 VkResult err = vkAllocateCommandBuffers(test_device.handle(), &cmd, &cmd_buffer); in TEST_F()
1578 vkCreateEvent(test_device.handle(), &event_create_info, nullptr, &event); in TEST_F()
1591 vkCreateQueryPool(test_device.handle(), &query_pool_create_info, nullptr, &query_pool); in TEST_F()
1598 vkDestroyQueryPool(test_device.handle(), query_pool, nullptr); in TEST_F()
1599 vkDestroyEvent(test_device.handle(), event, nullptr); in TEST_F()
1600 vkDestroyCommandPool(test_device.handle(), command_pool, nullptr); in TEST_F()
1617 VkDeviceObj test_device(0, gpu(), device_extension_names, &features); in TEST_F() local
1621 pool_create_info.queueFamilyIndex = test_device.graphics_queue_node_index_; in TEST_F()
1624 vkCreateCommandPool(test_device.handle(), &pool_create_info, nullptr, &command_pool); in TEST_F()
1634 VkResult err = vkAllocateCommandBuffers(test_device.handle(), &cmd, &cmd_buffer); in TEST_F()
1640 VkResult result = vkCreateEvent(test_device.handle(), &evci, NULL, &event); in TEST_F()
1654 vkDestroyEvent(test_device.handle(), event, NULL); in TEST_F()
1655 vkDestroyCommandPool(test_device.handle(), command_pool, NULL); in TEST_F()