()
| 182 | } |
| 183 | |
| 184 | public void trimVertexLimit() { |
| 185 | int limit = limitVertex; |
| 186 | for (int i = 0; i < buffers.length; i++) { |
| 187 | ArrayBuffer o = buffers[i]; |
| 188 | if (o != null) limit = Math.min(limit, o.getSize()); |
| 189 | } |
| 190 | limitVertex = limit; |
| 191 | } |
| 192 | |
| 193 | public void trimElementLimit() { |
| 194 | if (elements == null) return; |
no test coverage detected