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>2017-11-14 09:00:10 +0300
committerCampbell Barton <ideasman42@gmail.com>2017-11-14 09:08:34 +0300
commitb5eeec715efd7124610316b3ebf0791eb2fd6fef (patch)
tree31fe4498f8a86af94a5216c9d772424c12827ba0 /source/blender/draw/intern
parent289f9f42ff049a672b5235230435c16bc361b04e (diff)
Cleanup: remove BLI_blenlib from ghash header
This causes source files to depend on ghash header for BLI_string/rect/listbase. Also quiet warnings.
Diffstat (limited to 'source/blender/draw/intern')
-rw-r--r--source/blender/draw/intern/DRW_render.h10
-rw-r--r--source/blender/draw/intern/draw_cache_impl_particles.c1
2 files changed, 6 insertions, 5 deletions
diff --git a/source/blender/draw/intern/DRW_render.h b/source/blender/draw/intern/DRW_render.h
index e96ed220066..2bb957c8e43 100644
--- a/source/blender/draw/intern/DRW_render.h
+++ b/source/blender/draw/intern/DRW_render.h
@@ -28,16 +28,16 @@
#ifndef __DRW_RENDER_H__
#define __DRW_RENDER_H__
-#include "BKE_context.h"
-#include "BKE_layer.h"
-#include "BKE_material.h"
-#include "BKE_scene.h"
-
#include "BLI_listbase.h"
#include "BLI_math_matrix.h"
#include "BLI_math_vector.h"
#include "BLI_string.h"
+#include "BKE_context.h"
+#include "BKE_layer.h"
+#include "BKE_material.h"
+#include "BKE_scene.h"
+
#include "BLT_translation.h"
#include "DNA_object_types.h"
diff --git a/source/blender/draw/intern/draw_cache_impl_particles.c b/source/blender/draw/intern/draw_cache_impl_particles.c
index afee6ea182b..da0cc457b99 100644
--- a/source/blender/draw/intern/draw_cache_impl_particles.c
+++ b/source/blender/draw/intern/draw_cache_impl_particles.c
@@ -33,6 +33,7 @@
#include "BLI_utildefines.h"
#include "BLI_math_vector.h"
+#include "BLI_string.h"
#include "BLI_ghash.h"
#include "DNA_modifier_types.h"