Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Docs/ChangeLog-5x.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ clocked at 4.2 GHz, running `astcenc` using AVX2 and 6 threads.
The 5.6.0 release is a minor maintenance release.

* **Command line tool updates:**
* **Bug fix:** Zero the trailing reserved field of the DDS header before
writing it, so uncompressed `.dds` output no longer contains uninitialized
stack bytes.
* **Bug fix:** Fixed incorrect plane stride when writing an uncompressed 3D
LDR image to a DDS container.
* **Bug fix:** Fixed potential integer overflow when storing very large
Expand Down
1 change: 1 addition & 0 deletions Source/astcenccli_image_load_store.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2249,6 +2249,7 @@ static bool store_dds_uncompressed_image(
hdr.caps2 = (dim_z > 1) ? 0x200000 : 0;
hdr.caps3 = 0;
hdr.caps4 = 0;
hdr.reserved2 = 0;

// Pixel-format data
if (bitness == 8)
Expand Down
Loading