| 65 | } |
| 66 | |
| 67 | void DrawGradientH(::Color color1, ::Color color2) const { |
| 68 | ::DrawRectangleGradientH( |
| 69 | static_cast<int>(x), |
| 70 | static_cast<int>(y), |
| 71 | static_cast<int>(width), |
| 72 | static_cast<int>(height), |
| 73 | color1, |
| 74 | color2); |
| 75 | } |
| 76 | |
| 77 | void DrawGradient(::Color topLeft, ::Color bottomLeft, ::Color bottomRight, ::Color topRight) const { |
| 78 | ::DrawRectangleGradientEx(*this, topLeft, bottomLeft, bottomRight, topRight); |
nothing calls this directly
no outgoing calls
no test coverage detected