Searched refs:DeviceWrapper (Results 1 – 11 of 11) sorted by relevance
/third_party/vulkan-loader/tests/framework/ |
D | test_environment.h | 156 struct DeviceWrapper { struct 157 DeviceWrapper(InstWrapper& inst_wrapper, VkAllocationCallbacks* callbacks = nullptr) noexcept; 158 …DeviceWrapper(VulkanFunctions& functions, VkDevice device, VkAllocationCallbacks* callbacks = null… 159 ~DeviceWrapper() noexcept; 162 DeviceWrapper(DeviceWrapper const&) = delete; 163 DeviceWrapper& operator=(DeviceWrapper const&) = delete; argument 164 DeviceWrapper(DeviceWrapper&&) noexcept; 165 DeviceWrapper& operator=(DeviceWrapper&&) noexcept; argument
|
D | test_environment.cpp | 98 DeviceWrapper::DeviceWrapper(InstWrapper& inst_wrapper, VkAllocationCallbacks* callbacks) noexcept in DeviceWrapper() function in DeviceWrapper 100 DeviceWrapper::DeviceWrapper(VulkanFunctions& functions, VkDevice device, VkAllocationCallbacks* ca… in DeviceWrapper() function in DeviceWrapper 102 DeviceWrapper::~DeviceWrapper() noexcept { functions->vkDestroyDevice(dev, callbacks); } in ~DeviceWrapper() 104 DeviceWrapper::DeviceWrapper(DeviceWrapper&& other) noexcept { in DeviceWrapper() function in DeviceWrapper 111 DeviceWrapper& DeviceWrapper::operator=(DeviceWrapper&& other) noexcept { in operator =() 121 void DeviceWrapper::CheckCreate(VkPhysicalDevice phys_dev, VkResult result_to_check) { in CheckCreate()
|
D | README.md | 161 * DeviceWrapper - helper to construct and then destroy a vulkan device during tests
|
/third_party/vulkan-loader/tests/ |
D | loader_threading_tests.cpp | 47 DeviceWrapper dev{inst}; in create_destroy_instance_loop_with_function_queries() 63 DeviceWrapper dev{inst}; in create_destroy_device_loop()
|
D | loader_regression_tests.cpp | 400 DeviceWrapper dev{inst}; in TEST() 931 DeviceWrapper dev{inst}; in TEST() 964 DeviceWrapper dev{inst}; in TEST() 985 DeviceWrapper dev{inst}; in TEST() 1006 std::vector<DeviceWrapper> devices; in TEST() 1009 DeviceWrapper& dev = devices.back(); in TEST() 1401 DeviceWrapper dev{inst}; in TEST() 1469 DeviceWrapper dev{inst}; in TEST() 1534 DeviceWrapper dev{inst}; in TEST() 1585 DeviceWrapper dev{inst}; in TEST() [all …]
|
D | loader_unknown_ext_tests.cpp | 637 ParentType get_parent_type(InstWrapper const& inst, DeviceWrapper const& dev); 640 VkInstance get_parent_type<VkInstance>(InstWrapper const& inst, DeviceWrapper const& dev) { in get_parent_type() 644 VkDevice get_parent_type<VkDevice>(InstWrapper const& inst, DeviceWrapper const& dev) { in get_parent_type() 649 DispatchableHandleType get_dispatch_handle(FrameworkEnvironment& env, DeviceWrapper const& dev, 653 VkDevice get_dispatch_handle<VkDevice>(FrameworkEnvironment& env, DeviceWrapper const& dev, std::ve… in get_dispatch_handle() 658 VkCommandBuffer get_dispatch_handle<VkCommandBuffer>(FrameworkEnvironment& env, DeviceWrapper const… in get_dispatch_handle() 673 VkQueue get_dispatch_handle<VkQueue>(FrameworkEnvironment& env, DeviceWrapper const& dev, std::vect… in get_dispatch_handle() 729 DeviceWrapper dev{inst}; in unknown_function_test_impl() 1323 DeviceWrapper dev{inst}; in TEST() 1355 DeviceWrapper dev{inst}; in TEST()
|
D | loader_layer_tests.cpp | 1360 DeviceWrapper dev{inst}; in TEST() 1370 DeviceWrapper dev{inst}; in TEST() 1380 DeviceWrapper dev{inst}; in TEST() 1390 DeviceWrapper dev{inst}; in TEST() 1965 DeviceWrapper dev{inst}; in TEST() 2043 DeviceWrapper dev{inst}; in TEST() 2104 DeviceWrapper dev{inst}; in TEST() 2170 DeviceWrapper dev{inst}; in TEST() 2239 DeviceWrapper dev{inst}; in TEST() 2311 DeviceWrapper dev{inst}; in TEST() [all …]
|
D | loader_get_proc_addr_tests.cpp | 80 DeviceWrapper dev{inst}; in TEST()
|
D | README.md | 41 * Use InstWrapper helper as well as DeviceWrapper to automate this concern away.
|
D | loader_version_tests.cpp | 651 DeviceWrapper device{inst}; in TEST()
|
/third_party/vulkan-loader/tests/live_verification/ |
D | dynamic_rendering_get_proc_addr.cpp | 52 DeviceWrapper dev(inst); in main()
|