diff --git a/source/blender/compositor/intern/COM_ExecutionSystem.cc b/source/blender/compositor/intern/COM_ExecutionSystem.cc index 8f46bfade40..3faaf460688 100644 --- a/source/blender/compositor/intern/COM_ExecutionSystem.cc +++ b/source/blender/compositor/intern/COM_ExecutionSystem.cc @@ -20,6 +20,7 @@ #include "BLI_utildefines.h" #include "PIL_time.h" +#include "PIL_time_utildefines.h" #include "COM_Debug.h" #include "COM_FullFrameExecutionModel.h" @@ -107,7 +108,9 @@ void ExecutionSystem::set_operations(const Vector &operations, void ExecutionSystem::execute() { DebugInfo::execute_started(this); + TIMEIT_START(compositor); m_execution_model->execute(*this); + TIMEIT_END(compositor); } void ExecutionSystem::execute_work(const rcti &work_rect,