(PGraphicsOpenGL pg, int target, int ncoords, int esize, int usage)
| 42 | private GLResourceVertexBuffer glres; |
| 43 | |
| 44 | VertexBuffer(PGraphicsOpenGL pg, int target, int ncoords, int esize, int usage) { |
| 45 | this(pg, target, ncoords, esize, usage, false); |
| 46 | } |
| 47 | |
| 48 | VertexBuffer(PGraphicsOpenGL pg, int target, int ncoords, int esize, int usage, boolean index) { |
| 49 | pgl = pg.pgl; |
nothing calls this directly
no test coverage detected