#pragma once #include "dxvk_hud_text.h" namespace dxvk::hud { /** * \brief Device info display for the HUD * * Displays the name of the device, as well as * the driver version and Vulkan API version. */ class HudDeviceInfo { public: HudDeviceInfo(const Rc& device); ~HudDeviceInfo(); HudPos renderText( const Rc& context, HudTextRenderer& renderer, HudPos position); private: std::string m_deviceName; std::string m_driverVer; std::string m_vulkanVer; }; }