Listing the "Blender Foundation" as copyright holder implied the Blender Foundation holds copyright to files which may include work from many developers. While keeping copyright on headers makes sense for isolated libraries, Blender's own code may be refactored or moved between files in a way that makes the per file copyright holders less meaningful. Copyright references to the "Blender Foundation" have been replaced with "Blender Authors", with the exception of `./extern/` since these this contains libraries which are more isolated, any changed to license headers there can be handled on a case-by-case basis. Some directories in `./intern/` have also been excluded: - `./intern/cycles/` it's own `AUTHORS` file is planned. - `./intern/opensubdiv/`. An "AUTHORS" file has been added, using the chromium projects authors file as a template. Design task: #110784 Ref !110783.
54 lines
1.2 KiB
C
54 lines
1.2 KiB
C
/* SPDX-FileCopyrightText: 2023 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#pragma once
|
|
|
|
#include "DNA_curves_types.h"
|
|
|
|
/** \file
|
|
* \ingroup bke
|
|
* \brief Low-level operations for curves that cannot be defined in the C++ header yet.
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct BoundBox;
|
|
struct Curves;
|
|
struct Depsgraph;
|
|
struct Main;
|
|
struct Object;
|
|
struct Scene;
|
|
|
|
void *BKE_curves_add(struct Main *bmain, const char *name);
|
|
|
|
struct BoundBox *BKE_curves_boundbox_get(struct Object *ob);
|
|
|
|
bool BKE_curves_attribute_required(const struct Curves *curves, const char *name);
|
|
|
|
/* Depsgraph */
|
|
|
|
struct Curves *BKE_curves_copy_for_eval(const struct Curves *curves_src);
|
|
|
|
void BKE_curves_data_update(struct Depsgraph *depsgraph,
|
|
struct Scene *scene,
|
|
struct Object *object);
|
|
|
|
/* Draw Cache */
|
|
|
|
enum {
|
|
BKE_CURVES_BATCH_DIRTY_ALL = 0,
|
|
};
|
|
|
|
void BKE_curves_batch_cache_dirty_tag(struct Curves *curves, int mode);
|
|
void BKE_curves_batch_cache_free(struct Curves *curves);
|
|
|
|
extern void (*BKE_curves_batch_cache_dirty_tag_cb)(struct Curves *curves, int mode);
|
|
extern void (*BKE_curves_batch_cache_free_cb)(struct Curves *curves);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|