(PGraphicsOpenGL pg, PFont.Glyph glyph)
| 221 | |
| 222 | |
| 223 | public TextureInfo addToTexture(PGraphicsOpenGL pg, PFont.Glyph glyph) { |
| 224 | int n = glyphTexinfos.length; |
| 225 | if (n == 0) { |
| 226 | glyphTexinfos = new TextureInfo[1]; |
| 227 | } |
| 228 | addToTexture(pg, n, glyph); |
| 229 | return glyphTexinfos[n]; |
| 230 | } |
| 231 | |
| 232 | |
| 233 | public boolean contextIsOutdated() { |
no test coverage detected