check if skeleton texture is already allocated before reallocating
(cherry picked from commit 99de3906ba
)
This commit is contained in:
parent
61ef8e98ba
commit
5acb21dd7b
|
@ -3466,6 +3466,8 @@ RID RasterizerStorageGLES2::skeleton_create() {
|
|||
|
||||
Skeleton *skeleton = memnew(Skeleton);
|
||||
|
||||
glGenTextures(1, &skeleton->tex_id);
|
||||
|
||||
return skeleton_owner.make_rid(skeleton);
|
||||
}
|
||||
|
||||
|
@ -3483,7 +3485,6 @@ void RasterizerStorageGLES2::skeleton_allocate(RID p_skeleton, int p_bones, bool
|
|||
skeleton->use_2d = p_2d_skeleton;
|
||||
|
||||
if (config.float_texture_supported) {
|
||||
glGenTextures(1, &skeleton->tex_id);
|
||||
|
||||
glActiveTexture(GL_TEXTURE0);
|
||||
glBindTexture(GL_TEXTURE_2D, skeleton->tex_id);
|
||||
|
|
Loading…
Reference in New Issue