Trivial change, just move all the code from `BKE_node.h` to `BKE_node.hh` header top. No mixing code from different headers or namespace changes. Part of #117773 Pull Request: https://projects.blender.org/blender/blender/pulls/118407
38 lines
927 B
C
38 lines
927 B
C
/* SPDX-FileCopyrightText: 2005 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup nodes
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "BKE_node.hh"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern struct bNodeTreeType *ntreeType_Texture;
|
|
|
|
void ntreeTexCheckCyclics(struct bNodeTree *ntree);
|
|
struct bNodeTreeExec *ntreeTexBeginExecTree(struct bNodeTree *ntree);
|
|
void ntreeTexEndExecTree(struct bNodeTreeExec *exec);
|
|
int ntreeTexExecTree(struct bNodeTree *ntree,
|
|
struct TexResult *target,
|
|
const float co[3],
|
|
float dxt[3],
|
|
float dyt[3],
|
|
int osatex,
|
|
short thread,
|
|
const struct Tex *tex,
|
|
short which_output,
|
|
int cfra,
|
|
int preview,
|
|
struct MTex *mtex);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|