#ifndef HOOKS_HPP #define HOOKS_HPP #include #include namespace Hooks { /// Vulkan device information structure. struct DeviceInfo { VkDevice device; VkPhysicalDevice physicalDevice; std::pair queue; // graphics family uint64_t frameGen; // amount of frames to generate }; /// /// Install overrides for hooked Vulkan functions. /// void initialize(); } #endif // HOOKS_HPP