UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

9 lines 398 B
/** * Convert uint16 encoded half float (float16) value to a full 32bit float * Useful for decoding 16bit packed data, such as that from serialized files of GPU textures * Reverse of {@link to_half_float_uint16} * @param {number} uint16val * @returns {number} decoded float */ export function half_to_float_uint16(uint16val: number): number; //# sourceMappingURL=half_to_float_uint16.d.ts.map