Home
last modified time | relevance | path

Searched defs:DeviceWrapper (Results 1 – 2 of 2) sorted by relevance

/third_party/vulkan-loader/tests/framework/
Dtest_environment.h321 struct DeviceWrapper { struct
328 DeviceWrapper& operator=(DeviceWrapper const&) = delete; argument
330 DeviceWrapper& operator=(DeviceWrapper&&) noexcept; argument
336 operator VkDevice() { return dev; } in VkDevice()
337 operator VkDevice() const { return dev; } in VkDevice()
340 …const char* func_name) { return FromVoidStarFunc(functions->vkGetDeviceProcAddr(dev, func_name)); } in load()
342 VulkanFunctions* functions = nullptr;
343 VkDevice dev = VK_NULL_HANDLE;
344 VkAllocationCallbacks* callbacks = nullptr;
Dtest_environment.cpp279 DeviceWrapper::DeviceWrapper(InstWrapper& inst_wrapper, VkAllocationCallbacks* callbacks) noexcept function in DeviceWrapper
281 DeviceWrapper::DeviceWrapper(VulkanFunctions& functions, VkDevice device, VkAllocationCallbacks* ca… function in DeviceWrapper
285 DeviceWrapper::DeviceWrapper(DeviceWrapper&& other) noexcept { function in DeviceWrapper