Hyprland/src/render/Renderer.hpp

15 lines
296 B
C++
Raw Normal View History

2022-03-17 20:22:29 +01:00
#pragma once
#include "../defines.hpp"
class CHyprRenderer {
public:
void renderAllClientsForMonitor(const int&, timespec*);
2022-03-19 14:07:18 +01:00
void outputMgrApplyTest(wlr_output_configuration_v1*, bool);
2022-03-17 20:22:29 +01:00
private:
};
inline std::unique_ptr<CHyprRenderer> g_pHyprRenderer;