(text, options)
| 13135 | } |
| 13136 | |
| 13137 | function tryVectorizeText(text, options) { |
| 13138 | try { |
| 13139 | return vectorizeText(text, options) |
| 13140 | } catch(e) { |
| 13141 | console.warn('error vectorizing text:"' + text + '" error:', e) |
| 13142 | return { |
| 13143 | cells: [], |
| 13144 | positions: [] |
| 13145 | } |
| 13146 | } |
| 13147 | } |
| 13148 | |
| 13149 | function createTextSprites( |
| 13150 | gl, |
no test coverage detected
searching dependent graphs…