Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/intern/node_common.c
| Show All 33 Lines | |||||
| #include "BKE_node.h" | #include "BKE_node.h" | ||||
| #include "RNA_types.h" | #include "RNA_types.h" | ||||
| #include "MEM_guardedalloc.h" | #include "MEM_guardedalloc.h" | ||||
| #include "node_common.h" | #include "node_common.h" | ||||
| #include "node_util.h" | #include "node_utils.h" | ||||
| #include "NOD_common.h" | #include "NOD_common.h" | ||||
| enum { | enum { | ||||
| REFINE_FORWARD = 1 << 0, | REFINE_FORWARD = 1 << 0, | ||||
| REFINE_BACKWARD = 1 << 1, | REFINE_BACKWARD = 1 << 1, | ||||
| }; | }; | ||||
| /**** Group ****/ | /**** Group ****/ | ||||
| ▲ Show 20 Lines • Show All 550 Lines • Show Last 20 Lines | |||||