()
| 224 | let lastScissor: { readonly x: number; readonly y: number; readonly w: number; readonly h: number } | null = null; |
| 225 | |
| 226 | const assertNotDisposed = (): void => { |
| 227 | if (disposed) throw new Error('ScatterRenderer is disposed.'); |
| 228 | }; |
| 229 | |
| 230 | const ensureCpuInstanceCapacityFloats = (requiredFloats: number): void => { |
| 231 | if (requiredFloats <= cpuInstanceStagingF32.length) return; |