pass: improve pass debugging

This commit is contained in:
vaxerski
2025-01-01 17:26:05 +01:00
parent 4e93b2def5
commit d64ac47202
5 changed files with 133 additions and 44 deletions

View File

@@ -43,3 +43,7 @@ Hyprgraphics::CColor::SHSL CHyprColor::asHSL() const {
CHyprColor CHyprColor::stripA() const {
return {r, g, b, 1.F};
}
CHyprColor CHyprColor::modifyA(float newa) const {
return {r, g, b, newa};
}