(int mode, int count, int type, int offset)
| 3241 | public abstract void drawArraysImpl(int mode, int first, int count); |
| 3242 | |
| 3243 | public void drawElements(int mode, int count, int type, int offset) { |
| 3244 | geomCount += count; |
| 3245 | drawElementsImpl(mode, count, type, offset); |
| 3246 | } |
| 3247 | |
| 3248 | public abstract void drawElementsImpl(int mode, int count, int type, int offset); |
| 3249 |