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/
37 lines
873 B
C
37 lines
873 B
C
/* SPDX-FileCopyrightText: 2007 Blender Foundation
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup nodes
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "DNA_listBase.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct bNodeTree;
|
|
|
|
/** Groups display their internal tree name as label. */
|
|
void node_group_label(const struct bNodeTree *ntree,
|
|
const struct bNode *node,
|
|
char *label,
|
|
int label_maxncpy);
|
|
bool node_group_poll_instance(const struct bNode *node,
|
|
const struct bNodeTree *nodetree,
|
|
const char **r_disabled_hint);
|
|
|
|
/**
|
|
* Global update function for Reroute node types.
|
|
* This depends on connected nodes, so must be done as a tree-wide update.
|
|
*/
|
|
void ntree_update_reroute_nodes(struct bNodeTree *ntree);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|