(
matrixSize: number, channelsPerTexture: number)
| 107 | } |
| 108 | |
| 109 | export function getUnpackedArraySizeFromMatrixSize( |
| 110 | matrixSize: number, channelsPerTexture: number): number { |
| 111 | return matrixSize * channelsPerTexture; |
| 112 | } |
| 113 | |
| 114 | export function getColorMatrixTextureShapeWidthHeight( |
| 115 | rows: number, columns: number): [number, number] { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…