| 209 | RLCPP_NODISCARD Color Alpha(float alpha) const { return ::ColorAlpha(*this, alpha); } |
| 210 | |
| 211 | Color Lerp(::Color color2, float factor) { |
| 212 | return ::ColorLerp(*this, color2, factor); |
| 213 | } |
| 214 | |
| 215 | /** |
| 216 | * Returns src alpha-blended into dst color with tint |
nothing calls this directly
no outgoing calls
no test coverage detected