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.h314 struct DeviceWrapper { struct
321 DeviceWrapper& operator=(DeviceWrapper const&) = delete; argument
323 DeviceWrapper& operator=(DeviceWrapper&&) noexcept; argument
329 operator VkDevice() { return dev; } in VkDevice()
330 operator VkDevice() const { return dev; } in VkDevice()
333 …const char* func_name) { return FromVoidStarFunc(functions->vkGetDeviceProcAddr(dev, func_name)); } in load()
335 VulkanFunctions* functions = nullptr;
336 VkDevice dev = VK_NULL_HANDLE;
337 VkAllocationCallbacks* callbacks = nullptr;
Dtest_environment.cpp267 DeviceWrapper::DeviceWrapper(InstWrapper& inst_wrapper, VkAllocationCallbacks* callbacks) noexcept function in DeviceWrapper
269 DeviceWrapper::DeviceWrapper(VulkanFunctions& functions, VkDevice device, VkAllocationCallbacks* ca… function in DeviceWrapper
273 DeviceWrapper::DeviceWrapper(DeviceWrapper&& other) noexcept { function in DeviceWrapper