diff options
author | Trianta <[email protected]> | 2024-09-30 00:15:25 -0500 |
---|---|---|
committer | Mihai Fufezan <[email protected]> | 2024-09-30 10:06:39 +0300 |
commit | f6387536f62454f82039b42f641cd8c44153ad47 (patch) | |
tree | a3dd6b2288934b5e3a1a00e5f6c0583c1089ed0a | |
parent | 968f6a6013409a6e6eab1545b28cd5e0cc49ce87 (diff) | |
download | Hyprland-f6387536f62454f82039b42f641cd8c44153ad47.tar.gz Hyprland-f6387536f62454f82039b42f641cd8c44153ad47.zip |
protocol: fix missing include
-rw-r--r-- | src/protocols/SinglePixel.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/protocols/SinglePixel.cpp b/src/protocols/SinglePixel.cpp index 7dd3748f..0595cce5 100644 --- a/src/protocols/SinglePixel.cpp +++ b/src/protocols/SinglePixel.cpp @@ -1,5 +1,6 @@ #include "SinglePixel.hpp" #include <limits> +#include "render/Renderer.hpp" CSinglePixelBuffer::CSinglePixelBuffer(uint32_t id, wl_client* client, CColor col_) { LOGM(LOG, "New single-pixel buffer with color 0x{:x}", col_.getAsHex()); |