Changeset View
Changeset View
Standalone View
Standalone View
source/blender/depsgraph/DEG_depsgraph_debug.h
| Show All 17 Lines | |||||
| */ | */ | ||||
| /** \file | /** \file | ||||
| * \ingroup depsgraph | * \ingroup depsgraph | ||||
| * | * | ||||
| * Public API for Querying and Filtering Depsgraph | * Public API for Querying and Filtering Depsgraph | ||||
| */ | */ | ||||
| #ifndef __DEG_DEPSGRAPH_DEBUG_H__ | #pragma once | ||||
| #define __DEG_DEPSGRAPH_DEBUG_H__ | |||||
| #include <stdio.h> | #include <stdio.h> | ||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| extern "C" { | extern "C" { | ||||
| #endif | #endif | ||||
| struct Depsgraph; | struct Depsgraph; | ||||
| Show All 39 Lines | bool DEG_debug_graph_relations_validate(struct Depsgraph *graph, | ||||
| struct ViewLayer *view_layer); | struct ViewLayer *view_layer); | ||||
| /* Perform consistency check on the graph. */ | /* Perform consistency check on the graph. */ | ||||
| bool DEG_debug_consistency_check(struct Depsgraph *graph); | bool DEG_debug_consistency_check(struct Depsgraph *graph); | ||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| } /* extern "C" */ | } /* extern "C" */ | ||||
| #endif | #endif | ||||
| #endif /* __DEG_DEPSGRAPH_DEBUG_H__ */ | |||||