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:
authorTon Roosendaal <ton@blender.org>2006-02-18 18:57:46 +0300
committerTon Roosendaal <ton@blender.org>2006-02-18 18:57:46 +0300
commitf4ddc2fde29950fcd7c24f74551ef86a54a520f2 (patch)
treed1f7b3e18b935d2287843aa3963cdb85f277ae9b /source/blender/blenkernel/intern/nla.c
parent1ea90994744cb95d83717bb7df972c693f9e9583 (diff)
Quick change in Hue/Saturation Node: made the central Hue value 0.5, to
make applying changes easier. Saturation slider goes to 2.0 now. Fix: rendering compositing nodes without scene crashed in header stats drawing.
Diffstat (limited to 'source/blender/blenkernel/intern/nla.c')
-rw-r--r--source/blender/blenkernel/intern/nla.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/source/blender/blenkernel/intern/nla.c b/source/blender/blenkernel/intern/nla.c
index 100f2bb5d72..a8f1f2406f1 100644
--- a/source/blender/blenkernel/intern/nla.c
+++ b/source/blender/blenkernel/intern/nla.c
@@ -32,18 +32,24 @@
#include <stdlib.h>
-#include "BKE_nla.h"
-#include "BKE_blender.h"
+#include "MEM_guardedalloc.h"
+
#include "BLI_blenlib.h"
+
#include "DNA_space_types.h"
#include "DNA_nla_types.h"
#include "DNA_action_types.h"
#include "DNA_ID.h"
#include "DNA_ipo_types.h"
#include "DNA_object_types.h"
-#include "MEM_guardedalloc.h"
+
+#include "BKE_nla.h"
+#include "BKE_action.h"
+#include "BKE_blender.h"
+#include "BKE_library.h"
#include "BKE_object.h" /* for convert_action_to_strip(ob) */
+
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif