Vertical column
| 83 | |
| 84 | // Vertical column |
| 85 | long ZepBuffer::GetBufferColumn(GlyphIterator location) const |
| 86 | { |
| 87 | auto lineStart = GetLinePos(location, LineLocation::LineBegin); |
| 88 | return CodePointDistance(lineStart, location); |
| 89 | } |
| 90 | |
| 91 | // Find the location inside the list of line ends |
| 92 | long ZepBuffer::GetBufferLine(GlyphIterator location) const |
no test coverage detected