shadow: alpha treatment improvements

This commit is contained in:
Vaxry
2023-11-11 00:52:40 +00:00
parent 427153e86a
commit e44d6de555
2 changed files with 8 additions and 4 deletions

View File

@@ -5,7 +5,7 @@
class CColor {
public:
CColor();
CColor(float, float, float, float);
CColor(float r, float g, float b, float a);
CColor(uint64_t);
float r = 0, g = 0, b = 0, a = 1.f;
@@ -27,4 +27,8 @@ class CColor {
bool operator==(const CColor& c2) const {
return r == c2.r && g == c2.g && b == c2.b && a == c2.a;
}
CColor stripA() const {
return {r, g, b, 1};
}
};