(val, offset = 0)
| 934 | } |
| 935 | |
| 936 | function writeFloatForwards(val, offset = 0) { |
| 937 | val = +val; |
| 938 | checkBounds(this, offset, 3); |
| 939 | |
| 940 | float32Array[0] = val; |
| 941 | this[offset++] = uInt8Float32Array[0]; |
| 942 | this[offset++] = uInt8Float32Array[1]; |
| 943 | this[offset++] = uInt8Float32Array[2]; |
| 944 | this[offset++] = uInt8Float32Array[3]; |
| 945 | return offset; |
| 946 | } |
| 947 | |
| 948 | function writeFloatBackwards(val, offset = 0) { |
| 949 | val = +val; |
nothing calls this directly
no test coverage detected
searching dependent graphs…