added ls blurring

This commit is contained in:
vaxerski
2022-07-06 22:12:03 +02:00
parent 6a16f11d63
commit 1cf2f378d4
5 changed files with 35 additions and 1 deletions

View File

@@ -31,6 +31,8 @@ struct SLayerSurface {
bool fadingOut = false;
bool readyToDelete = false;
bool forceBlur = false;
// For the list lookup
bool operator==(const SLayerSurface& rhs) {
return layerSurface == rhs.layerSurface && monitorID == rhs.monitorID;
@@ -62,6 +64,9 @@ struct SRenderData {
// for custom round values
int rounding = -1; // -1 means not set
// for blurring
bool blur = false;
};
struct SKeyboard {