4 Aug
2023
4 Aug
'23
3:16 a.m.
On Fri Aug 4 02:46:35 2023 +0000, Conor McCarthy wrote:
`OpConvertFToU` doesn't require the result to have the same width as the input, so another option is `NClamp` to `(0.0f, 4294967296.0f)`, convert to uint64, clamp to 0xffffffff, then truncate. `NClamp` does `max` first, which takes care of `NaN`. That does require int64 support, unfortunately.
-- https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/289#note_41296