Skip to content

Commit 166f901

Browse files
committed
Don't mangle the first mipmap
1 parent bc7519d commit 166f901

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Runtime/Graphics/CTexture.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ CTexture::CTexture(CInputStream& in, std::string_view label, EAutoMipmap automip
5959
}
6060

6161
if (sMangleMips) {
62-
for (u32 i = 0; i < x8_mips; ++i) {
62+
for (u32 i = 1; i < x8_mips; ++i) {
6363
MangleMipmap(i);
6464
}
6565
}

0 commit comments

Comments
 (0)