Merge pull request #24502 from Shinryuuji/fix-texturelayered-format

Fix TextureLayered::create not retaining format
This commit is contained in:
Rémi Verschelde 2018-12-20 19:13:23 +01:00 committed by GitHub
commit 25b98e4842
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2067,7 +2067,7 @@ void TextureLayered::create(uint32_t p_width, uint32_t p_height, uint32_t p_dept
width = p_width;
height = p_height;
depth = p_depth;
format = p_format;
flags = p_flags;
}