Skip to content

Commit

Permalink
Merge pull request godotengine#97326 from jj11hh/master
Browse files Browse the repository at this point in the history
Fix hash calculation for NTSliceKey
  • Loading branch information
clayjohn authored Sep 22, 2024
2 parents d3e3b73 + 864d4fb commit 2d6af00
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ class RenderSceneBuffersRD : public RenderSceneBuffers {
h = hash_murmur3_one_32(p_val.layers, h);
h = hash_murmur3_one_32(p_val.mipmap, h);
h = hash_murmur3_one_32(p_val.mipmaps, h);
h = hash_murmur3_one_32(p_val.texture_view.format_override);
h = hash_murmur3_one_32(p_val.texture_view.format_override, h);
h = hash_murmur3_one_32(p_val.texture_view.swizzle_r, h);
h = hash_murmur3_one_32(p_val.texture_view.swizzle_g, h);
h = hash_murmur3_one_32(p_val.texture_view.swizzle_b, h);
Expand Down

0 comments on commit 2d6af00

Please sign in to comment.