(int mode, int count, int type, int offset)
| 3184 | public abstract void drawArraysImpl(int mode, int first, int count); |
| 3185 | |
| 3186 | public void drawElements(int mode, int count, int type, int offset) { |
| 3187 | geomCount += count; |
| 3188 | drawElementsImpl(mode, count, type, offset); |
| 3189 | } |
| 3190 | |
| 3191 | public abstract void drawElementsImpl(int mode, int count, int type, int offset); |
| 3192 |