Misc: changed CRC32 table to use crc32c polynomial in order to be compatible with SSE 4.2 instructions. (#8169, #4933)

This commit is contained in:
Teselka
2024-11-22 13:33:25 +02:00
committed by ocornut
parent 61ab94d553
commit e6dd8f626a
3 changed files with 22 additions and 17 deletions

View File

@@ -48,6 +48,9 @@ Breaking changes:
- We provide convenience legacy fields to pass a single descriptor,
matching the old API, but upcoming features will want multiple.
- Legacy ImGui_ImplDX12_Init() signature is still supported (will obsolete).
- Misc: changed CRC32 table to use CRC32c polynomial in order to be compatible
with the result of SSE 4.2 instructions. As a result, old .ini data may be
partially lost. (#8169, #4933) [@Teselka]
Other changes: