Revert "More cleanups."

This reverts commit bda71d1eb6.

Oops, a little too eager here.
This commit is contained in:
Stephen Anthony 2024-05-09 20:10:55 -02:30
parent bda71d1eb6
commit fd35ce623b
1 changed files with 4 additions and 0 deletions

View File

@ -285,6 +285,10 @@ class FBSurface
struct Attributes {
bool blending{false}; // Blending is enabled
uInt32 blendalpha{100}; // Alpha to use in blending mode (0-100%)
bool operator==(const Attributes& other) const {
return blendalpha == other.blendalpha && blending == other.blending;
}
};
/**