(int loc, int vboId, int size, int type,
boolean normalized, int stride, int offset)
| 610 | |
| 611 | |
| 612 | protected void setAttributeVBO(int loc, int vboId, int size, int type, |
| 613 | boolean normalized, int stride, int offset) { |
| 614 | if (-1 < loc) { |
| 615 | pgl.bindBuffer(PGL.ARRAY_BUFFER, vboId); |
| 616 | pgl.vertexAttribPointer(loc, size, type, normalized, stride, offset); |
| 617 | } |
| 618 | } |
| 619 | |
| 620 | |
| 621 | protected void setUniformValue(int loc, int x) { |
no test coverage detected