| 205 | } |
| 206 | |
| 207 | void GuiContext::drawInterfacePolyLines(PolyF poly, Vec4B const& color, float lineWidth) { |
| 208 | poly.scale(interfaceScale()); |
| 209 | drawPolyLines(poly, color, lineWidth * interfaceScale()); |
| 210 | } |
| 211 | |
| 212 | void GuiContext::drawInterfaceQuad(RectF const& screenCoords, Vec4B const& color) { |
| 213 | drawQuad(screenCoords.scaled(interfaceScale()), color); |
no test coverage detected