| 2051 | } |
| 2052 | |
| 2053 | Ui::Point TextRenderer::drawStringRight(Ui::Point origin, AdvancedColour colour, StringId stringId, FormatArgumentsView args /* = {}*/) |
| 2054 | { |
| 2055 | auto& rt = _ctx.currentRenderTarget(); |
| 2056 | |
| 2057 | TextDrawingState drawState; |
| 2058 | drawState.font = _currentFontSpriteBase; |
| 2059 | drawState.fontFlags = _currentFontFlags; |
| 2060 | |
| 2061 | return Impl::drawStringRight(drawState, _ctx, rt, origin, colour, stringId, args); |
| 2062 | } |
| 2063 | |
| 2064 | Ui::Point TextRenderer::drawStringRightUnderline(Ui::Point origin, AdvancedColour colour, StringId stringId, FormatArgumentsView args /* = {}*/) |
| 2065 | { |
no test coverage detected