Commit: 20f0e2f342b572ce776ef22b2debcf9532894dea Author: Sergey Sharybin Date: Thu Jun 9 09:52:41 2016 +0200 Branches: master https://developer.blender.org/rB20f0e2f342b572ce776ef22b2debcf9532894dea
Compilation error fix after recent cleanup Please do not do cleanups in minimal configuration, doing that has been proven to only cause issues without solving anything meaningful ;) =================================================================== M source/blender/gpu/intern/gpu_draw.c =================================================================== diff --git a/source/blender/gpu/intern/gpu_draw.c b/source/blender/gpu/intern/gpu_draw.c index c1247db..b6f977d 100644 --- a/source/blender/gpu/intern/gpu_draw.c +++ b/source/blender/gpu/intern/gpu_draw.c @@ -71,6 +71,9 @@ #include "BKE_node.h" #include "BKE_scene.h" #include "BKE_DerivedMesh.h" +#ifdef WITH_GAMEENGINE +# include "BKE_object.h" +#endif #include "GPU_basic_shader.h" #include "GPU_buffers.h" _______________________________________________ Bf-blender-cvs mailing list [email protected] https://lists.blender.org/mailman/listinfo/bf-blender-cvs
