A lot of files were missing copyright field in the header and
the Blender Foundation contributed to them in a sense of bug
fixing and general maintenance.
This change makes it explicit that those files are at least
partially copyrighted by the Blender Foundation.
Note that this does not make it so the Blender Foundation is
the only holder of the copyright in those files, and developers
who do not have a signed contract with the foundation still
hold the copyright as well.
Another aspect of this change is using SPDX format for the
header. We already used it for the license specification,
and now we state it for the copyright as well, following the
FAQ:
https://reuse.software/faq/
36 lines
983 B
C
36 lines
983 B
C
/* SPDX-FileCopyrightText: 2001-2002 NaN Holding BV. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
#pragma once
|
|
|
|
/** \file
|
|
* \ingroup bke
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct Main;
|
|
|
|
/**
|
|
* Called from #do_versions() in `readfile.c` to convert the old 'IPO/adrcode' system
|
|
* to the new 'Animato/RNA' system.
|
|
*
|
|
* The basic method used here, is to loop over data-blocks which have IPO-data,
|
|
* and add those IPO's to new AnimData blocks as Actions.
|
|
* Action/NLA data only works well for Objects, so these only need to be checked for there.
|
|
*
|
|
* Data that has been converted should be freed immediately, which means that it is immediately
|
|
* clear which data-blocks have yet to be converted, and also prevent freeing errors when we exit.
|
|
*
|
|
* \note Currently done after all file reading.
|
|
*/
|
|
void do_versions_ipos_to_animato(struct Main *main);
|
|
|
|
/* --------------------- xxx stuff ------------------------ */
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|