diff options
author | Pablo Andres Fuente <pfuente@heroku.com> | 2024-10-01 23:41:13 -0300 |
---|---|---|
committer | Pablo Andres Fuente <pablo.andres.fuente@gmail.com> | 2024-11-12 08:46:52 -0300 |
commit | eb86670f94ef505e9b4adc37bc0948a3a5588ed8 (patch) | |
tree | 5daa03dd78b80c77820e7e9ae203f909d02e9dab /tests/core/io/test_marshalls.h | |
parent | ec6a1c0e792ac8be44990749800a4654a293b9ee (diff) | |
download | redot-engine-eb86670f94ef505e9b4adc37bc0948a3a5588ed8.tar.gz |
Add half precision floating point support to `StreamPeer`
Closes godotengine/godot-proposals#5983
Adds put/get methods to `StreamPeer` that handles half precision
floating point values.
Adds endode/decode half precision floating point to `marshalls`.
Adds `get_half` and `store_half` to `FileAccess`
Co-Authored-By: "Alfonso J. Ramos" <theraot@gmail.com>
Diffstat (limited to 'tests/core/io/test_marshalls.h')
-rw-r--r-- | tests/core/io/test_marshalls.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/core/io/test_marshalls.h b/tests/core/io/test_marshalls.h index de8d6e1406..29e713c3a9 100644 --- a/tests/core/io/test_marshalls.h +++ b/tests/core/io/test_marshalls.h @@ -90,6 +90,20 @@ TEST_CASE("[Marshalls] Unsigned 64 bit integer decoding") { CHECK(decode_uint64(arr) == 0x0f123456789abcdef); } +TEST_CASE("[Marshalls] Floating point half precision encoding") { + uint8_t arr[2]; + + // Decimal: 0.33325195 + // IEEE 754 half-precision binary floating-point format: + // sign exponent (5 bits) fraction (10 bits) + // 0 01101 0101010101 + // Hexadecimal: 0x3555 + unsigned int actual_size = encode_half(0.33325195f, arr); + CHECK(actual_size == sizeof(uint16_t)); + CHECK(arr[0] == 0x55); + CHECK(arr[1] == 0x35); +} + TEST_CASE("[Marshalls] Floating point single precision encoding") { uint8_t arr[4]; @@ -126,6 +140,13 @@ TEST_CASE("[Marshalls] Floating point double precision encoding") { CHECK(arr[7] == 0x3f); } +TEST_CASE("[Marshalls] Floating point half precision decoding") { + uint8_t arr[] = { 0x55, 0x35 }; + + // See floating point half precision encoding test case for details behind expected values. + CHECK(decode_half(arr) == 0.33325195f); +} + TEST_CASE("[Marshalls] Floating point single precision decoding") { uint8_t arr[] = { 0x00, 0x00, 0x20, 0x3e }; |