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:
authorManuel Castilla <manzanillawork@gmail.com>2021-10-14 00:00:24 +0300
committerManuel Castilla <manzanillawork@gmail.com>2021-10-14 00:41:14 +0300
commitecb8a574c752068de9f8d9eb98f54db1569df2f7 (patch)
tree705bed742cf9214af62422701e9ab5eb505849f1 /source/blender/compositor/intern/COM_ExecutionGroup.cc
parent91c33c8b99520b6b094265a826cd391929a81716 (diff)
Cleanup: remove unused includes in Compositor
And move unneeded includes in frequently used headers to source files. Slightly reduces compile time.
Diffstat (limited to 'source/blender/compositor/intern/COM_ExecutionGroup.cc')
-rw-r--r--source/blender/compositor/intern/COM_ExecutionGroup.cc17
1 files changed, 1 insertions, 16 deletions
diff --git a/source/blender/compositor/intern/COM_ExecutionGroup.cc b/source/blender/compositor/intern/COM_ExecutionGroup.cc
index 505a4066a25..655bc030dec 100644
--- a/source/blender/compositor/intern/COM_ExecutionGroup.cc
+++ b/source/blender/compositor/intern/COM_ExecutionGroup.cc
@@ -16,36 +16,21 @@
* Copyright 2011, Blender Foundation.
*/
-#include <algorithm>
-#include <cmath>
-#include <cstdlib>
-#include <sstream>
-
-#include "atomic_ops.h"
-
+#include "COM_ExecutionGroup.h"
#include "COM_ChunkOrder.h"
#include "COM_Debug.h"
-#include "COM_ExecutionGroup.h"
-#include "COM_ExecutionSystem.h"
#include "COM_ReadBufferOperation.h"
#include "COM_ViewerOperation.h"
#include "COM_WorkScheduler.h"
#include "COM_WriteBufferOperation.h"
#include "COM_defines.h"
-#include "BLI_math.h"
#include "BLI_rand.hh"
-#include "BLI_string.h"
#include "BLT_translation.h"
-#include "MEM_guardedalloc.h"
-
#include "PIL_time.h"
-#include "WM_api.h"
-#include "WM_types.h"
-
namespace blender::compositor {
std::ostream &operator<<(std::ostream &os, const ExecutionGroupFlags &flags)