(value: DynoVal<"float">)
| 70 | ): DynoVal<"mat4"> => new Mat4({ value }); |
| 71 | |
| 72 | export const floatBitsToInt = (value: DynoVal<"float">): DynoVal<"int"> => |
| 73 | new FloatBitsToInt({ value }); |
| 74 | export const floatBitsToUint = (value: DynoVal<"float">): DynoVal<"uint"> => |
| 75 | new FloatBitsToUint({ value }); |
| 76 | export const intBitsToFloat = (value: DynoVal<"int">): DynoVal<"float"> => |