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-07 19:41:36 +0300
committerManuel Castilla <manzanillawork@gmail.com>2021-10-08 02:13:07 +0300
commitc0995c27a8f57a79eb98ae70f5bd1cefbacb7a02 (patch)
treeeeaf8f92eae4a28080df169efd898014b95ccabd /source/blender/compositor/operations/COM_CompositorOperation.cc
parent23791db1456332ee83b16156dc117eaa873a765c (diff)
Cleanup: Remove unused includes in Compositor
And move unneeded includes in frequently used headers to source files. Slightly reduces compilation time.
Diffstat (limited to 'source/blender/compositor/operations/COM_CompositorOperation.cc')
-rw-r--r--source/blender/compositor/operations/COM_CompositorOperation.cc10
1 files changed, 1 insertions, 9 deletions
diff --git a/source/blender/compositor/operations/COM_CompositorOperation.cc b/source/blender/compositor/operations/COM_CompositorOperation.cc
index f7466b5db34..0713ecd9316 100644
--- a/source/blender/compositor/operations/COM_CompositorOperation.cc
+++ b/source/blender/compositor/operations/COM_CompositorOperation.cc
@@ -17,19 +17,11 @@
*/
#include "COM_CompositorOperation.h"
+
#include "BKE_global.h"
#include "BKE_image.h"
-#include "BLI_listbase.h"
-#include "MEM_guardedalloc.h"
-
-#include "BLI_threads.h"
#include "RE_pipeline.h"
-#include "RE_texture.h"
-
-#include "render_types.h"
-
-#include "PIL_time.h"
namespace blender::compositor {