Cleanup: moved drivers to BKE_fcurve_driver.h / fcurve_driver.c

All the driver-specific code in `fcurve.c` has been moved into a new file
`fcurve_driver.c`. The corresponding declarations have been moved from
`BKE_fcurve.h` to `BKE_fcurve_driver.h`.

All the `#include "BKE_fcurve.h"` statements have been investigated and
replaced with `BKE_fcurve_driver.h` where necessary.

No functional changes.
This commit is contained in:
2020-05-01 12:43:12 +02:00
parent 28bdf669a9
commit aa72e3abf9
27 changed files with 1425 additions and 1326 deletions

View File

@@ -33,7 +33,7 @@
#include "BLI_math_base.h"
#include "BLI_string.h"
#include "BKE_fcurve.h"
#include "BKE_fcurve_driver.h"
#include "BKE_global.h"
#include "bpy_rna_driver.h" /* for pyrna_driver_get_variable_value */

View File

@@ -26,7 +26,7 @@
#include "BLI_utildefines.h"
#include "BKE_fcurve.h"
#include "BKE_fcurve_driver.h"
#include "RNA_access.h"