Merge pull request #31931 from fire/assimp_map_mode

Assimp map mode is not initialized before use.
This commit is contained in:
Rémi Verschelde 2019-09-03 23:31:42 +02:00 committed by GitHub
commit d2900347bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -79,7 +79,7 @@ struct ImportState {
struct AssimpImageData { struct AssimpImageData {
Ref<Image> raw_image; Ref<Image> raw_image;
Ref<ImageTexture> texture; Ref<ImageTexture> texture;
aiTextureMapMode *map_mode = NULL; aiTextureMapMode map_mode[2];
}; };
/** Recursive state is used to push state into functions instead of specifying them /** Recursive state is used to push state into functions instead of specifying them