Skip to content

Commit 49d37b0

Browse files
authored
[rtexture] Cubemap mipmap loading improvements (#4721)
* [rtextures] Only build cubemap mipmaps when necessary * [rtextures] Assign correct mipmap count to cubemaps
1 parent 7bfc8e8 commit 49d37b0

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/rtextures.c

+6-3
Original file line numberDiff line numberDiff line change
@@ -4208,8 +4208,11 @@ TextureCubemap LoadTextureCubemap(Image image, int layout)
42084208

42094209
Image mipmapped = ImageCopy(image);
42104210
#if defined(SUPPORT_IMAGE_MANIPULATION)
4211-
ImageMipmaps(&mipmapped);
4212-
ImageMipmaps(&faces);
4211+
if (image.mipmaps > 1)
4212+
{
4213+
ImageMipmaps(&mipmapped);
4214+
ImageMipmaps(&faces);
4215+
}
42134216
#endif
42144217

42154218
// NOTE: Image formatting does not work with compressed textures
@@ -4226,7 +4229,7 @@ TextureCubemap LoadTextureCubemap(Image image, int layout)
42264229
if (cubemap.id != 0)
42274230
{
42284231
cubemap.format = faces.format;
4229-
cubemap.mipmaps = 1;
4232+
cubemap.mipmaps = faces.mipmaps;
42304233
}
42314234
else TRACELOG(LOG_WARNING, "IMAGE: Failed to load cubemap image");
42324235

0 commit comments

Comments
 (0)