Revert "More cleanups."

This reverts commit fdc1f106f8.

Oops, a little too eager here.
This commit is contained in:
Stephen Anthony 2024-05-09 20:10:55 -02:30
parent fdc1f106f8
commit cb80c00629
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;
}
};
/**