Home
last modified time | relevance | path

Searched refs:DeviceWrapper (Results 1 – 11 of 11) sorted by relevance

/third_party/vulkan-loader/tests/framework/
Dtest_environment.h156 struct DeviceWrapper { struct
157 DeviceWrapper(InstWrapper& inst_wrapper, VkAllocationCallbacks* callbacks = nullptr) noexcept;
158DeviceWrapper(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
Dtest_environment.cpp98 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()
DREADME.md161 * DeviceWrapper - helper to construct and then destroy a vulkan device during tests
/third_party/vulkan-loader/tests/
Dloader_threading_tests.cpp47 DeviceWrapper dev{inst}; in create_destroy_instance_loop_with_function_queries()
63 DeviceWrapper dev{inst}; in create_destroy_device_loop()
Dloader_regression_tests.cpp400 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 …]
Dloader_unknown_ext_tests.cpp637 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()
Dloader_layer_tests.cpp1360 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 …]
Dloader_get_proc_addr_tests.cpp80 DeviceWrapper dev{inst}; in TEST()
DREADME.md41 * Use InstWrapper helper as well as DeviceWrapper to automate this concern away.
Dloader_version_tests.cpp651 DeviceWrapper device{inst}; in TEST()
/third_party/vulkan-loader/tests/live_verification/
Ddynamic_rendering_get_proc_addr.cpp52 DeviceWrapper dev(inst); in main()