Explorar el Código

Fix calling `TextureStorage::texture_3d_update()` could cause a crash

Rindbee hace 2 años
padre
commit
ebd2b9e299
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      servers/rendering/renderer_rd/storage_rd/texture_storage.cpp

+ 2 - 2
servers/rendering/renderer_rd/storage_rd/texture_storage.cpp

@@ -1153,8 +1153,8 @@ void TextureStorage::texture_3d_update(RID p_texture, const Vector<Ref<Image>> &
 				image = image->duplicate();
 				image->convert(tex->validated_format);
 			}
-			all_data_size += images[i]->get_data().size();
-			images.push_back(image);
+			all_data_size += image->get_data().size();
+			images.write[i] = image;
 		}
 
 		all_data.resize(all_data_size); //consolidate all data here