//////////////////////// \brief Get size of the font being rendered Note that this is the font size not the screen size of the text object \return Font size as int ////////////////////////
| 82 | /// \return Font size as int |
| 83 | ///////////////////////////// |
| 84 | inline int FontSize(){ |
| 85 | assert(font); |
| 86 | |
| 87 | return font->height; |
| 88 | } |
| 89 | |
| 90 | ///////////////////////////// |
| 91 | /// \brief Get size of the text object in pixels |
nothing calls this directly
no outgoing calls
no test coverage detected