Searched defs:DeviceWrapper (Results 1 – 2 of 2) sorted by relevance
321 struct DeviceWrapper { struct328 DeviceWrapper& operator=(DeviceWrapper const&) = delete; argument330 DeviceWrapper& operator=(DeviceWrapper&&) noexcept; argument336 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;
279 DeviceWrapper::DeviceWrapper(InstWrapper& inst_wrapper, VkAllocationCallbacks* callbacks) noexcept function in DeviceWrapper281 DeviceWrapper::DeviceWrapper(VulkanFunctions& functions, VkDevice device, VkAllocationCallbacks* ca… function in DeviceWrapper285 DeviceWrapper::DeviceWrapper(DeviceWrapper&& other) noexcept { function in DeviceWrapper