(value, uniformLength)
| 64841 | return toTypedArray(value, uniformLength, Float32Array, FLOAT_ARRAY); |
| 64842 | } |
| 64843 | function toIntArray(value, uniformLength) { |
| 64844 | return toTypedArray(value, uniformLength, Int32Array, INT_ARRAY); |
| 64845 | } |
| 64846 | function toUIntArray(value, uniformLength) { |
| 64847 | return toTypedArray(value, uniformLength, Uint32Array, UINT_ARRAY); |
| 64848 | } |
nothing calls this directly
no test coverage detected