( drawRange, z, index )
| 33290 | } |
| 33291 | |
| 33292 | push( drawRange, z, index ) { |
| 33293 | |
| 33294 | const pool = this.pool; |
| 33295 | const list = this.list; |
| 33296 | if ( this.index >= pool.length ) { |
| 33297 | |
| 33298 | pool.push( { |
| 33299 | |
| 33300 | start: - 1, |
| 33301 | count: - 1, |
| 33302 | z: - 1, |
| 33303 | index: - 1, |
| 33304 | |
| 33305 | } ); |
| 33306 | |
| 33307 | } |
| 33308 | |
| 33309 | const item = pool[ this.index ]; |
| 33310 | list.push( item ); |
| 33311 | this.index ++; |
| 33312 | |
| 33313 | item.start = drawRange.start; |
| 33314 | item.count = drawRange.count; |
| 33315 | item.z = z; |
| 33316 | item.index = index; |
| 33317 | |
| 33318 | } |
| 33319 | |
| 33320 | reset() { |
| 33321 |
no outgoing calls
no test coverage detected