| 197 | } |
| 198 | |
| 199 | void GuiContext::drawInterfaceDrawable(Drawable drawable, Vec2F const& screenPos, Vec4B const& color) { |
| 200 | drawDrawable(std::move(drawable), screenPos * interfaceScale(), (float)interfaceScale(), color); |
| 201 | } |
| 202 | |
| 203 | void GuiContext::drawInterfaceLine(Vec2F const& begin, Vec2F const end, Vec4B const& color, float lineWidth) { |
| 204 | drawLine(begin * interfaceScale(), end * interfaceScale(), color, lineWidth * interfaceScale()); |
no outgoing calls
no test coverage detected