| 11 | namespace { |
| 12 | |
| 13 | int CalculateTextWidth(const char *s) |
| 14 | { |
| 15 | int l = 0; |
| 16 | while (*s) { |
| 17 | l += fontkern[fontframe[gbFontTransTbl[static_cast<unsigned char>(*s++)]]] + 1; |
| 18 | } |
| 19 | return l; |
| 20 | } |
| 21 | |
| 22 | int SpaceWidth() |
| 23 | { |
no outgoing calls
no test coverage detected