Fix Drawlist::Clear / Add HashID / FNV Type traits

This commit is contained in:
2026-03-09 20:46:41 +01:00
parent 8ee7006d2c
commit 68cc809555
5 changed files with 70 additions and 1 deletions

View File

@@ -131,7 +131,7 @@ class Rect {
return *this;
}
bool operator==(Rect& r) { return Top == r.Top && Bot == r.Bot; }
bool operator==(const Rect& r) const { return Top == r.Top && Bot == r.Bot; }
void SwapVec2XY() {
Top.SwapXY();