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:
authorCampbell Barton <ideasman42@gmail.com>2021-02-09 23:57:53 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-02-10 01:38:24 +0300
commitbdb42c2c2d08aeccef99d2d70e50186fa6fd8001 (patch)
tree1b4de2f4f3a14832187bde2e4015f0ee6955c687 /source/blender/editors/space_image
parent7b84a5a370a59eabfe798d8209889a2c05645854 (diff)
Cleanup: remove redundant headers in source/blender/editors/
Remove redundant headers using `./source/tools/utils_maintenance/code_clean.py` Reviewed By: jmonteath Ref D10364
Diffstat (limited to 'source/blender/editors/space_image')
-rw-r--r--source/blender/editors/space_image/image_ops.c7
-rw-r--r--source/blender/editors/space_image/image_sequence.c4
-rw-r--r--source/blender/editors/space_image/space_image.c14
3 files changed, 0 insertions, 25 deletions
diff --git a/source/blender/editors/space_image/image_ops.c b/source/blender/editors/space_image/image_ops.c
index eae16b2cb71..4008ca228ac 100644
--- a/source/blender/editors/space_image/image_ops.c
+++ b/source/blender/editors/space_image/image_ops.c
@@ -36,9 +36,7 @@
#include "BLI_blenlib.h"
#include "BLI_fileops.h"
-#include "BLI_fileops_types.h"
#include "BLI_ghash.h"
-#include "BLI_linklist.h"
#include "BLI_math.h"
#include "BLI_string.h"
#include "BLI_utildefines.h"
@@ -48,7 +46,6 @@
#include "DNA_camera_types.h"
#include "DNA_node_types.h"
#include "DNA_object_types.h"
-#include "DNA_packedFile_types.h"
#include "DNA_scene_types.h"
#include "DNA_screen_types.h"
@@ -62,14 +59,10 @@
#include "BKE_lib_id.h"
#include "BKE_main.h"
#include "BKE_packedFile.h"
-#include "BKE_paint.h"
#include "BKE_report.h"
-#include "BKE_scene.h"
-#include "BKE_screen.h"
#include "DEG_depsgraph.h"
-#include "GPU_immediate.h"
#include "GPU_state.h"
#include "IMB_colormanagement.h"
diff --git a/source/blender/editors/space_image/image_sequence.c b/source/blender/editors/space_image/image_sequence.c
index 81f2ced7dee..02546e3e3b3 100644
--- a/source/blender/editors/space_image/image_sequence.c
+++ b/source/blender/editors/space_image/image_sequence.c
@@ -27,7 +27,6 @@
#include "BLI_fileops.h"
#include "BLI_fileops_types.h"
-#include "BLI_linklist.h"
#include "BLI_listbase.h"
#include "BLI_math_base.h"
#include "BLI_path_util.h"
@@ -35,7 +34,6 @@
#include "BLI_utildefines.h"
#include "DNA_image_types.h"
-#include "DNA_space_types.h"
#include "DNA_windowmanager_types.h"
#include "RNA_access.h"
@@ -45,8 +43,6 @@
#include "ED_image.h"
-#include "WM_types.h"
-
typedef struct ImageFrame {
struct ImageFrame *next, *prev;
int framenr;
diff --git a/source/blender/editors/space_image/space_image.c b/source/blender/editors/space_image/space_image.c
index d6939a9100f..69976bc088c 100644
--- a/source/blender/editors/space_image/space_image.c
+++ b/source/blender/editors/space_image/space_image.c
@@ -24,8 +24,6 @@
#include "DNA_gpencil_types.h"
#include "DNA_image_types.h"
#include "DNA_mask_types.h"
-#include "DNA_mesh_types.h"
-#include "DNA_meshdata_types.h"
#include "DNA_object_types.h"
#include "DNA_scene_types.h"
@@ -37,14 +35,9 @@
#include "BKE_colortools.h"
#include "BKE_context.h"
-#include "BKE_editmesh.h"
#include "BKE_image.h"
-#include "BKE_layer.h"
#include "BKE_lib_id.h"
-#include "BKE_material.h"
-#include "BKE_scene.h"
#include "BKE_screen.h"
-#include "BKE_workspace.h"
#include "RNA_access.h"
#include "RNA_define.h"
@@ -56,7 +49,6 @@
#include "ED_image.h"
#include "ED_mask.h"
-#include "ED_mesh.h"
#include "ED_node.h"
#include "ED_render.h"
#include "ED_screen.h"
@@ -65,19 +57,13 @@
#include "ED_uvedit.h"
#include "WM_api.h"
-#include "WM_message.h"
#include "WM_types.h"
#include "UI_interface.h"
#include "UI_resources.h"
#include "UI_view2d.h"
-#include "GPU_batch_presets.h"
-#include "GPU_framebuffer.h"
-#include "GPU_viewport.h"
-
#include "DRW_engine.h"
-#include "DRW_engine_types.h"
#include "image_intern.h"