* Appends new points to an existing series without re-uploading the entire buffer when possible. * * - Reuses the same geometric growth policy as `setSeries`. * - When no reallocation is needed, writes only the appended byte range via `queue.writeBuffer(...)`. * - Maintains `pointCount`
(index: number, newPoints: ReadonlyArray<DataPoint>)
| 17 | * Throws if the series has not been set yet. |
| 18 | */ |
| 19 | appendSeries(index: number, newPoints: ReadonlyArray<DataPoint>): void; |
| 20 | removeSeries(index: number): void; |
| 21 | getSeriesBuffer(index: number): GPUBuffer; |
| 22 | /** |
no outgoing calls
no test coverage detected