================ _UI_DrawTopBottom ================= */
| 3632 | ================= |
| 3633 | */ |
| 3634 | void _UI_DrawTopBottom(float x, float y, float w, float h, float size) |
| 3635 | { |
| 3636 | size *= uiInfo.uiDC.yscale; |
| 3637 | trap_R_DrawStretchPic( x, y, w, size, 0, 0, 0, 0, uiInfo.uiDC.whiteShader ); |
| 3638 | trap_R_DrawStretchPic( x, y + h - size, w, size, 0, 0, 0, 0, uiInfo.uiDC.whiteShader ); |
| 3639 | } |
| 3640 | /* |
| 3641 | ================ |
| 3642 | UI_DrawRect |
no test coverage detected