diff options
author | LunaticInAHat <LunaticInAHat@users.noreply.github.com> | 2023-12-19 13:23:42 -0500 |
---|---|---|
committer | LunaticInAHat <LunaticInAHat@users.noreply.github.com> | 2023-12-19 16:42:10 -0500 |
commit | a344d7f9065af4762bc4c9dba90d40c52f9102e4 (patch) | |
tree | a7c774056fe6c8fb6afbb35b1dd898faada03cf5 | |
parent | 1f5d4a62e9e9a8227ad63155b080fbbfac899571 (diff) | |
download | redot-engine-a344d7f9065af4762bc4c9dba90d40c52f9102e4.tar.gz |
Support unspecified linear size in DDS files
Not all exporters choose to populate that (optional) header field.
-rw-r--r-- | modules/dds/texture_loader_dds.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/modules/dds/texture_loader_dds.cpp b/modules/dds/texture_loader_dds.cpp index 5bd8598f4a..b2de6b656e 100644 --- a/modules/dds/texture_loader_dds.cpp +++ b/modules/dds/texture_loader_dds.cpp @@ -404,8 +404,11 @@ Ref<Resource> ResourceFormatDDS::load(const String &p_path, const String &p_orig // BC compressed. uint32_t size = MAX(info.divisor, w) / info.divisor * MAX(info.divisor, h) / info.divisor * info.block_size; - ERR_FAIL_COND_V(size != pitch, Ref<Resource>()); - ERR_FAIL_COND_V(!(flags & DDSD_LINEARSIZE), Ref<Resource>()); + if (flags & DDSD_LINEARSIZE) { + ERR_FAIL_COND_V_MSG(size != pitch, Ref<Resource>(), "DDS header flags specify that a linear size of the top-level image is present, but the specified size does not match the expected value."); + } else { + ERR_FAIL_COND_V_MSG(pitch != 0, Ref<Resource>(), "DDS header flags specify that no linear size will given for the top-level image, but a non-zero linear size value is present in the header."); + } for (uint32_t i = 1; i < mipmaps; i++) { w = MAX(1u, w >> 1); |