From ce6db959c7d96792edad3a6d606e3662a4ef0798 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 5 Jun 2018 16:58:08 +0200 Subject: Moved function declarations from BKE_DerivedMesh.h to BKE_mesh_runtime.h The function definitions still reside in DerivedMesh.c. Once we're done porting all the DerivedMesh use to Mesh, we'll move the still-relevant functions to mesh_runtime.c. This move is now cumbersome due to shared statically-declared utility functions in DerivedMesh.c --- source/blender/blenkernel/intern/mesh_runtime.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source/blender/blenkernel/intern/mesh_runtime.c') diff --git a/source/blender/blenkernel/intern/mesh_runtime.c b/source/blender/blenkernel/intern/mesh_runtime.c index 86d3cf7a0c8..2109a465c55 100644 --- a/source/blender/blenkernel/intern/mesh_runtime.c +++ b/source/blender/blenkernel/intern/mesh_runtime.c @@ -35,6 +35,7 @@ #include "DNA_mesh_types.h" #include "DNA_meshdata_types.h" +#include "DNA_object_types.h" #include "BLI_math_geom.h" #include "BLI_threads.h" @@ -43,6 +44,10 @@ #include "BKE_mesh.h" #include "BKE_mesh_runtime.h" +#ifdef WITH_DERIVEDMESH +#include "BKE_DerivedMesh.h" +#endif + /* -------------------------------------------------------------------- */ /** \name Mesh Runtime Struct Utils * \{ */ -- cgit v1.2.3