MCPcopy Create free account
hub / github.com/RobLoach/raylib-cpp / IsEqual

Function IsEqual

include/Color.hpp:184–186  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

182 void DrawRectangleLines(::Rectangle rec, float lineThick) const { ::DrawRectangleLinesEx(rec, lineThick, *this); }
183
184 bool IsEqual(::Color color) {
185 return ::ColorIsEqual(*this, color);
186 }
187
188 bool operator==(const ::Color& other) const { return ::ColorIsEqual(*this, other); }
189 bool operator!=(const ::Color& other) const { return !::ColorIsEqual(*this, other); }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected