()
| 1 | import type { WebGpuSplatFrameSnapshot } from './WebGpuSplatCanvasRuntime'; |
| 2 | |
| 3 | export function nowMs(): number { |
| 4 | return typeof performance !== 'undefined' && typeof performance.now === 'function' |
| 5 | ? performance.now() |
| 6 | : Date.now(); |
| 7 | } |
| 8 | |
| 9 | export function sameWebGpuSplatCameraPose( |
| 10 | a: WebGpuSplatFrameSnapshot, |
no outgoing calls
no test coverage detected