* Returns src alpha-blended into dst color with tint */
| 216 | * Returns src alpha-blended into dst color with tint |
| 217 | */ |
| 218 | RLCPP_NODISCARD Color AlphaBlend(::Color dst, ::Color tint) const { return ::ColorAlphaBlend(dst, *this, tint); } |
| 219 | |
| 220 | static Color LightGray() { return LIGHTGRAY; } |
| 221 | static Color Gray() { return GRAY; } |
nothing calls this directly
no outgoing calls
no test coverage detected