You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
MangoHud/src/app/mangoapp.h

17 lines
344 B
C++

#ifdef MANGOAPP
#include <stdint.h>
#include <mutex>
#include <condition_variable>
#include <vector>
extern std::mutex mangoapp_m;
extern std::condition_variable mangoapp_cv;
extern uint8_t g_fsrUpscale;
extern uint8_t g_fsrSharpness;
extern std::vector<float> gamescope_debug_latency;
extern std::vector<float> gamescope_debug_app;
#endif