()
| 211 | let lastScissor: { readonly x: number; readonly y: number; readonly w: number; readonly h: number } | null = null; |
| 212 | |
| 213 | const assertNotDisposed = (): void => { |
| 214 | if (disposed) throw new Error('PieRenderer is disposed.'); |
| 215 | }; |
| 216 | |
| 217 | const ensureCpuInstanceCapacityFloats = (requiredFloats: number): void => { |
| 218 | if (requiredFloats <= cpuInstanceStagingF32.length) return; |