| 160 | } |
| 161 | |
| 162 | void DrawGradientVertical(rect_t rect, rgba_colour_t c1, rgba_colour_t c2, surface_t* surface){ |
| 163 | DrawGradientVertical(rect.pos.x, rect.pos.y, rect.size.x, rect.size.y, c1, c2, surface); |
| 164 | } |
| 165 | |
| 166 | void DrawGradientVertical(int x, int y, int width, int height, rgba_colour_t c1, rgba_colour_t c2, surface_t* surface){ |
| 167 | if(x < 0){ |
no test coverage detected