| 24 | import {Rotation} from './types'; |
| 25 | |
| 26 | interface Dimensions { |
| 27 | width: number; |
| 28 | height: number; |
| 29 | depth: number; |
| 30 | } |
| 31 | |
| 32 | // Shared cached frameBuffer object from external context |
| 33 | const fboCache = new WeakMap<WebGL2RenderingContext, WebGLFramebuffer>(); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…