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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-06-11 21:00:03 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-06-11 22:34:21 +0300
commit3816502b7ca0728405d8dff8d074e3189740648a (patch)
tree65c13d1440f93b3ffcd868cc5968b9dc6455ce0c /source/blender/python/intern/bpy_driver.h
parent2bbe0c4ef43adb7437a9318fce3d41b36f07f013 (diff)
Drivers: ensure Python expressions are cached with copy-on-write.
Store the compiled expressions on the original driver. Ref T55442.
Diffstat (limited to 'source/blender/python/intern/bpy_driver.h')
-rw-r--r--source/blender/python/intern/bpy_driver.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/source/blender/python/intern/bpy_driver.h b/source/blender/python/intern/bpy_driver.h
index 017a6fe89c5..971cbdf901f 100644
--- a/source/blender/python/intern/bpy_driver.h
+++ b/source/blender/python/intern/bpy_driver.h
@@ -27,14 +27,7 @@
#ifndef __BPY_DRIVER_H__
#define __BPY_DRIVER_H__
-struct ChannelDriver;
-struct PathResolvedRNA;
-
int bpy_pydriver_create_dict(void);
extern PyObject *bpy_pydriver_Dict;
-/* externals */
-float BPY_driver_exec(struct PathResolvedRNA *anim_rna, struct ChannelDriver *driver, const float evaltime);
-void BPY_driver_reset(void);
-
#endif /* __BPY_DRIVER_H__ */