Also see #103343. Couldn't move two files yet: * `softbody.c`: The corresponding regression test fails. It seems like the conversion to C++ changes floating point accuracy, but it's not clear where that happens exactly. * `writeffmpeg.c`: Is a bit more complex to convert because of the static array in `av_err2str`. Pull Request: https://projects.blender.org/blender/blender/pulls/110182
32 lines
738 B
C++
32 lines
738 B
C++
/* SPDX-FileCopyrightText: 2023 Blender Foundation
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup bke
|
|
*
|
|
* Contains management of ID's and libraries
|
|
* allocate and free of all library data
|
|
*/
|
|
|
|
#include "DNA_ID.h"
|
|
#include "DNA_mesh_types.h"
|
|
|
|
#include "BLI_utildefines.h"
|
|
|
|
#include "BKE_lib_id.h"
|
|
#include "BKE_mesh.h"
|
|
|
|
void BKE_id_eval_properties_copy(ID *id_cow, ID *id)
|
|
{
|
|
const ID_Type id_type = GS(id->name);
|
|
BLI_assert((id_cow->tag & LIB_TAG_COPIED_ON_WRITE) && !(id->tag & LIB_TAG_COPIED_ON_WRITE));
|
|
BLI_assert(ID_TYPE_SUPPORTS_PARAMS_WITHOUT_COW(id_type));
|
|
if (id_type == ID_ME) {
|
|
BKE_mesh_copy_parameters((Mesh *)id_cow, (const Mesh *)id);
|
|
}
|
|
else {
|
|
BLI_assert_unreachable();
|
|
}
|
|
}
|