(int idxId, int count, int offset)
| 578 | |
| 579 | |
| 580 | protected void draw(int idxId, int count, int offset) { |
| 581 | pgl.bindBuffer(PGL.ELEMENT_ARRAY_BUFFER, idxId); |
| 582 | pgl.drawElements(PGL.TRIANGLES, count, PGL.INDEX_TYPE, |
| 583 | offset * PGL.SIZEOF_INDEX); |
| 584 | pgl.bindBuffer(PGL.ELEMENT_ARRAY_BUFFER, 0); |
| 585 | } |
| 586 | |
| 587 | |
| 588 | /** |
no test coverage detected