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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2011-10-22 20:24:28 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2011-10-22 20:24:28 +0400
commit1bdf652b89871614c38bf2146cf94522c3347e06 (patch)
tree802bed7e11d40e7144b5109dd0bb68b70719e3f4 /source/blender/makesrna/intern
parent952560dc028516d60a5318eadbcbd5f2c0668335 (diff)
Code refactoring: move external engine functions into own file.
Diffstat (limited to 'source/blender/makesrna/intern')
-rw-r--r--source/blender/makesrna/intern/rna_render.c1
-rw-r--r--source/blender/makesrna/intern/rna_scene.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_render.c b/source/blender/makesrna/intern/rna_render.c
index a2e68668856..aeff9240b27 100644
--- a/source/blender/makesrna/intern/rna_render.c
+++ b/source/blender/makesrna/intern/rna_render.c
@@ -36,6 +36,7 @@
#include "rna_internal.h"
+#include "RE_engine.h"
#include "RE_pipeline.h"
#include "BKE_utildefines.h"
diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c
index 8b41c85e313..2a2c9c279dd 100644
--- a/source/blender/makesrna/intern/rna_scene.c
+++ b/source/blender/makesrna/intern/rna_scene.c
@@ -199,7 +199,7 @@ EnumPropertyItem image_color_mode_items[] ={
#include "ED_mesh.h"
#include "ED_keyframing.h"
-#include "RE_pipeline.h"
+#include "RE_engine.h"
static int rna_Scene_object_bases_lookup_string(PointerRNA *ptr, const char *key, PointerRNA *r_ptr)
{