(int idxId, int count, int offset)
| 587 | |
| 588 | |
| 589 | protected void draw(int idxId, int count, int offset) { |
| 590 | pgl.bindBuffer(PGL.ELEMENT_ARRAY_BUFFER, idxId); |
| 591 | pgl.drawElements(PGL.TRIANGLES, count, PGL.INDEX_TYPE, |
| 592 | offset * PGL.SIZEOF_INDEX); |
| 593 | pgl.bindBuffer(PGL.ELEMENT_ARRAY_BUFFER, 0); |
| 594 | } |
| 595 | |
| 596 | |
| 597 | /** |
no test coverage detected