mirror of
https://github.com/vale981/Hyprland
synced 2025-03-11 21:26:40 -04:00
20 lines
586 B
C++
20 lines
586 B
C++
#pragma once
|
|
|
|
#include "../defines.hpp"
|
|
#include <list>
|
|
#include "../helpers/Monitor.hpp"
|
|
#include "../Window.hpp"
|
|
|
|
class CHyprRenderer {
|
|
public:
|
|
|
|
void renderAllClientsForMonitor(const int&, timespec*);
|
|
void outputMgrApplyTest(wlr_output_configuration_v1*, bool);
|
|
void arrangeLayersForMonitor(const int&);
|
|
|
|
private:
|
|
void arrangeLayerArray(SMonitor*, const std::list<SLayerSurface*>&);
|
|
void drawBorderForWindow(CWindow*, SMonitor*);
|
|
};
|
|
|
|
inline std::unique_ptr<CHyprRenderer> g_pHyprRenderer;
|