Depsgraph: Remove evaluation priority completely

This commit is contained in:
Sergey Sharybin 2017-12-21 11:15:21 +01:00
parent f906f5cc58
commit f6b2fbb029
3 changed files with 0 additions and 5 deletions

View File

@ -57,9 +57,6 @@ extern "C" {
static bool use_legacy_depsgraph = true;
#endif
/* Unfinished and unused, and takes quite some pre-processing time. */
#undef USE_EVAL_PRIORITY
bool DEG_depsgraph_use_legacy(void)
{
#ifdef DISABLE_NEW_DEPSGRAPH

View File

@ -45,7 +45,6 @@ namespace DEG {
/* Inner Nodes */
OperationDepsNode::OperationDepsNode() :
eval_priority(0.0f),
flag(0),
customdata_mask(0)
{

View File

@ -76,7 +76,6 @@ struct OperationDepsNode : public DepsNode {
/* How many inlinks are we still waiting on before we can be evaluated. */
uint32_t num_links_pending;
float eval_priority;
bool scheduled;
/* Identifier for the operation being performed. */