Depsghraph: Remove unused function

This commit is contained in:
2017-04-05 15:36:17 +02:00
parent 52029e689c
commit f921442a44
2 changed files with 0 additions and 11 deletions

View File

@@ -52,14 +52,6 @@
namespace DEG {
string deg_fcurve_id_name(const FCurve *fcu)
{
char index_buf[32];
// TODO(sergey): Use int-to-string utility or so.
BLI_snprintf(index_buf, sizeof(index_buf), "[%d]", fcu->array_index);
return string(fcu->rna_path) + index_buf;
}
static bool check_object_needs_evaluation(Object *object)
{
if (object->recalc & OB_RECALC_ALL) {

View File

@@ -38,9 +38,6 @@ namespace DEG {
struct Depsgraph;
/* Get unique identifier for FCurves and Drivers */
string deg_fcurve_id_name(const FCurve *fcu);
void deg_graph_build_finalize(struct Depsgraph *graph);
void deg_graph_build_flush_layers(struct Depsgraph *graph);