diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-14 12:51:49 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-05-14 12:51:49 +0200 |
commit | 7ceed18790365c6938ad958d747c1bed421510e3 (patch) | |
tree | 6b879af4fa1466f30bd5e8f842f82bee71eee3cf /thirdparty/astcenc/astcenc_entry.cpp | |
parent | 78cce1954ddb6fefb90b33742215f304ec7b0b94 (diff) | |
download | redot-engine-7ceed18790365c6938ad958d747c1bed421510e3.tar.gz |
astcenc: Update to 4.8.0
https://github.com/ARM-software/astc-encoder/releases/tag/4.8.0
Diffstat (limited to 'thirdparty/astcenc/astcenc_entry.cpp')
-rw-r--r-- | thirdparty/astcenc/astcenc_entry.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/thirdparty/astcenc/astcenc_entry.cpp b/thirdparty/astcenc/astcenc_entry.cpp index 71efe9cec4..5dc3801606 100644 --- a/thirdparty/astcenc/astcenc_entry.cpp +++ b/thirdparty/astcenc/astcenc_entry.cpp @@ -1167,7 +1167,7 @@ astcenc_error astcenc_decompress_image( return ASTCENC_ERR_OUT_OF_MEM; } - image_block blk; + image_block blk {}; blk.texel_count = static_cast<uint8_t>(block_x * block_y * block_z); // Decode mode inferred from the output data type |