Update rmodels.c
This commit is contained in:
parent
37c047eabc
commit
de173a93c8
@ -4382,16 +4382,9 @@ static Image LoadImageFromCgltfImage(cgltf_image *image, const char *texPath, Co
|
||||
int size = 0;
|
||||
unsigned char *data = DecodeBase64(image->uri + i + 1, &size);
|
||||
|
||||
int width, height;
|
||||
unsigned char *raw = LoadImageFromMemory(".png", data, size, &width, &height, NULL, 4);
|
||||
rimage = LoadImageFromMemory(".png", data, size);
|
||||
RL_FREE(data);
|
||||
|
||||
rimage.data = raw;
|
||||
rimage.width = width;
|
||||
rimage.height = height;
|
||||
rimage.format = PIXELFORMAT_UNCOMPRESSED_R8G8B8A8;
|
||||
rimage.mipmaps = 1;
|
||||
|
||||
// TODO: Tint shouldn't be applied here!
|
||||
ImageColorTint(&rimage, tint);
|
||||
}
|
||||
@ -4416,16 +4409,9 @@ static Image LoadImageFromCgltfImage(cgltf_image *image, const char *texPath, Co
|
||||
n += stride;
|
||||
}
|
||||
|
||||
int width, height;
|
||||
unsigned char *raw = LoadImageFromMemory(".png", data, (int)image->buffer_view->size, &width, &height, NULL, 4);
|
||||
rimage = LoadImageFromMemory(".png", data, size);
|
||||
RL_FREE(data);
|
||||
|
||||
rimage.data = raw;
|
||||
rimage.width = width;
|
||||
rimage.height = height;
|
||||
rimage.format = PIXELFORMAT_UNCOMPRESSED_R8G8B8A8;
|
||||
rimage.mipmaps = 1;
|
||||
|
||||
// TODO: Tint shouldn't be applied here!
|
||||
ImageColorTint(&rimage, tint);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user