diff options
author | clayjohn <claynjohn@gmail.com> | 2023-10-11 21:34:52 -0600 |
---|---|---|
committer | clayjohn <claynjohn@gmail.com> | 2023-10-13 08:54:49 -0600 |
commit | e3d31837ebcc136f7b532e8ecfbbb8ee6eb665cc (patch) | |
tree | 7a8a664a1027242db37e6c661a4aa566b0e7ebbc /scene/resources/immediate_mesh.cpp | |
parent | b1371806ad3907c009458ea939bd4b810f9deb21 (diff) | |
download | redot-engine-e3d31837ebcc136f7b532e8ecfbbb8ee6eb665cc.tar.gz |
Sanitize tangents when creating mesh surfaces to avoid triggering the compressed mesh path in the shader
Diffstat (limited to 'scene/resources/immediate_mesh.cpp')
-rw-r--r-- | scene/resources/immediate_mesh.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scene/resources/immediate_mesh.cpp b/scene/resources/immediate_mesh.cpp index 0112ffd452..3507df8bd8 100644 --- a/scene/resources/immediate_mesh.cpp +++ b/scene/resources/immediate_mesh.cpp @@ -208,6 +208,11 @@ void ImmediateMesh::surface_end() { uint32_t value = 0; value |= (uint16_t)CLAMP(t.x * 65535, 0, 65535); value |= (uint16_t)CLAMP(t.y * 65535, 0, 65535) << 16; + if (value == 4294901760) { + // (1, 1) and (0, 1) decode to the same value, but (0, 1) messes with our compression detection. + // So we sanitize here. + value = 4294967295; + } *tangent = value; } |