(PGraphicsOpenGL pg, PFont font, boolean is3D)
| 64 | protected HashMap<PFont.Glyph, TextureInfo> texinfoMap; |
| 65 | |
| 66 | public FontTexture(PGraphicsOpenGL pg, PFont font, boolean is3D) { |
| 67 | pgl = pg.pgl; |
| 68 | this.is3D = is3D; |
| 69 | |
| 70 | initTexture(pg, font); |
| 71 | } |
| 72 | |
| 73 | |
| 74 | protected void allocate() { |
nothing calls this directly
no test coverage detected