| 55 | } |
| 56 | |
| 57 | void DrawGradientV(::Color color1, ::Color color2) const { |
| 58 | ::DrawRectangleGradientV( |
| 59 | static_cast<int>(x), |
| 60 | static_cast<int>(y), |
| 61 | static_cast<int>(width), |
| 62 | static_cast<int>(height), |
| 63 | color1, |
| 64 | color2); |
| 65 | } |
| 66 | |
| 67 | void DrawGradientH(::Color color1, ::Color color2) const { |
| 68 | ::DrawRectangleGradientH( |
nothing calls this directly
no outgoing calls
no test coverage detected