(
rows: number, columns: number)
| 158 | } |
| 159 | |
| 160 | export function getPackedRGBAArraySizeFromMatrixShape( |
| 161 | rows: number, columns: number): number { |
| 162 | const [w, h] = getPackedMatrixTextureShapeWidthHeight(rows, columns); |
| 163 | return w * h * 4; |
| 164 | } |
| 165 | |
| 166 | export interface TextureConfig { |
| 167 | internalFormatFloat: number; |
nothing calls this directly
no test coverage detected
searching dependent graphs…