| 119 | } |
| 120 | |
| 121 | void ui_core::ClientToScreenScaled(Fvector2& dest, float left, float top) |
| 122 | { |
| 123 | if (m_currentPointType != IUIRender::pttLIT) |
| 124 | dest.set(ClientToScreenScaledX(left), ClientToScreenScaledY(top)); |
| 125 | else |
| 126 | dest.set(left, top); |
| 127 | } |
| 128 | |
| 129 | void ui_core::ClientToScreenScaled(Fvector2& src_and_dest) |
| 130 | { |