Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Leung <aligorith@gmail.com>2018-08-23 07:55:07 +0300
committerJoshua Leung <aligorith@gmail.com>2018-08-23 08:07:39 +0300
commit0e09bfa0594ef64e5a1966280277330d65e874dd (patch)
tree909de8b69ac72008f9c91e80f98c617bf1cde756 /source/blender/depsgraph/DEG_depsgraph_query.h
parent3fa4e52657758b37698a6187764239560ff3d573 (diff)
Depsgraph: Added note that the filtering function should NOT be called on a filtered graph
Diffstat (limited to 'source/blender/depsgraph/DEG_depsgraph_query.h')
-rw-r--r--source/blender/depsgraph/DEG_depsgraph_query.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/depsgraph/DEG_depsgraph_query.h b/source/blender/depsgraph/DEG_depsgraph_query.h
index b7ecd0544e4..a666100c6da 100644
--- a/source/blender/depsgraph/DEG_depsgraph_query.h
+++ b/source/blender/depsgraph/DEG_depsgraph_query.h
@@ -233,7 +233,10 @@ typedef struct DEG_FilterQuery {
eDEG_FilterQuery_Granularity detail_level;
} DEG_FilterQuery;
-/* Obtain a new graph instance that only contains the subset of desired nodes */
+/* Obtain a new graph instance that only contains the subset of desired nodes
+ * WARNING: Do NOT pass an already filtered depsgraph through this function again,
+ * as we are currently unable to accurately recreate it.
+ */
Depsgraph *DEG_graph_filter(const Depsgraph *depsgraph, struct Main *bmain, DEG_FilterQuery *query);