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:
authorSergey Sharybin <sergey.vfx@gmail.com>2019-09-04 14:01:22 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-09-05 12:57:20 +0300
commitac060232aae2e70ff83c6926420a38f037bdee02 (patch)
tree92b90009705d18e53bddd7e597ad9d1b53ed51f6 /source/blender/depsgraph/DEG_depsgraph.h
parentf2400c1bb5e25c56366588fed34f6b6ee34cc849 (diff)
Depsgraph: Pass bmain to evaluation function
Currently unused, makes code ready for an upcoming change.
Diffstat (limited to 'source/blender/depsgraph/DEG_depsgraph.h')
-rw-r--r--source/blender/depsgraph/DEG_depsgraph.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/depsgraph/DEG_depsgraph.h b/source/blender/depsgraph/DEG_depsgraph.h
index 7553eca9b64..8e940ab1152 100644
--- a/source/blender/depsgraph/DEG_depsgraph.h
+++ b/source/blender/depsgraph/DEG_depsgraph.h
@@ -156,7 +156,7 @@ void DEG_evaluate_on_framechange(struct Main *bmain, Depsgraph *graph, float cti
/* Data changed recalculation entry point.
* < context_type: context to perform evaluation for
*/
-void DEG_evaluate_on_refresh(Depsgraph *graph);
+void DEG_evaluate_on_refresh(struct Main *bmain, Depsgraph *graph);
bool DEG_needs_eval(Depsgraph *graph);