We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bfc8e8 commit 49d37b0Copy full SHA for 49d37b0
src/rtextures.c
@@ -4208,8 +4208,11 @@ TextureCubemap LoadTextureCubemap(Image image, int layout)
4208
4209
Image mipmapped = ImageCopy(image);
4210
#if defined(SUPPORT_IMAGE_MANIPULATION)
4211
- ImageMipmaps(&mipmapped);
4212
- ImageMipmaps(&faces);
+ if (image.mipmaps > 1)
+ {
4213
+ ImageMipmaps(&mipmapped);
4214
+ ImageMipmaps(&faces);
4215
+ }
4216
#endif
4217
4218
// NOTE: Image formatting does not work with compressed textures
@@ -4226,7 +4229,7 @@ TextureCubemap LoadTextureCubemap(Image image, int layout)
4226
4229
if (cubemap.id != 0)
4227
4230
{
4228
4231
cubemap.format = faces.format;
- cubemap.mipmaps = 1;
4232
+ cubemap.mipmaps = faces.mipmaps;
4233
}
4234
else TRACELOG(LOG_WARNING, "IMAGE: Failed to load cubemap image");
4235
0 commit comments