(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 | } |
| 64849 | function parseUniformName(name) { |
| 64850 | if (name[name.length - 1] !== "]") return { |
| 64851 | name: name, |
nothing calls this directly
no test coverage detected