Cleanup: Correct location of node function declarations

Currently there are many function declarations in `BKE_node.h` that
don't actually have implementations in blenkernel. This commit moves
the declarations to `NOD_composite.h`, `NOD_texture.h`, and
`NOD_shader.h` instead. This helps to clarify the purpose of the
different modules.

Differential Revision: https://developer.blender.org/D13869
This commit is contained in:
2022-01-24 16:18:30 -06:00
parent 4d799db72f
commit 2bf519d211
25 changed files with 148 additions and 116 deletions

View File

@@ -22,6 +22,8 @@
#include "BKE_image.h"
#include "BKE_node.h"
#include "NOD_texture.h"
namespace blender::compositor {
TextureBaseOperation::TextureBaseOperation()