Changeset View
Changeset View
Standalone View
Standalone View
source/blender/depsgraph/DEG_depsgraph.h
| Show All 37 Lines | |||||
| * relationship constraints are satisfied. | * relationship constraints are satisfied. | ||||
| */ | */ | ||||
| /* ************************************************* */ | /* ************************************************* */ | ||||
| /* Forward-defined typedefs for core types | /* Forward-defined typedefs for core types | ||||
| * - These are used in all depsgraph code and by all callers of Depsgraph API... | * - These are used in all depsgraph code and by all callers of Depsgraph API... | ||||
| */ | */ | ||||
| #ifndef __DEG_DEPSGRAPH_H__ | #pragma once | ||||
| #define __DEG_DEPSGRAPH_H__ | |||||
| #include "DNA_ID.h" | #include "DNA_ID.h" | ||||
| /* Dependency Graph */ | /* Dependency Graph */ | ||||
| typedef struct Depsgraph Depsgraph; | typedef struct Depsgraph Depsgraph; | ||||
| /* ------------------------------------------------ */ | /* ------------------------------------------------ */ | ||||
| ▲ Show 20 Lines • Show All 172 Lines • ▼ Show 20 Lines | void DEG_debug_print_eval_time(struct Depsgraph *depsgraph, | ||||
| const char *function_name, | const char *function_name, | ||||
| const char *object_name, | const char *object_name, | ||||
| const void *object_address, | const void *object_address, | ||||
| float time); | float time); | ||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| } /* extern "C" */ | } /* extern "C" */ | ||||
| #endif | #endif | ||||
| #endif /* __DEG_DEPSGRAPH_H__ */ | |||||