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>2009-01-14 19:13:50 +0300
committerTon Roosendaal <ton@blender.org>2009-01-14 19:13:50 +0300
commit9aec7aaf6c560ddc0c2dd1c553c809f9b1e706d5 (patch)
tree53e851c0a106b6bb135ab0ecf37b5fa9c3055349 /source/blender/editors/include/ED_sequencer.h
parent3e756ca0a616a467d64521d7c82bb8229a38447c (diff)
2.5
GPencil code back! Joshua will probably take this further. I've added XXX notes where fixes are required. Also note that ED_gpencil.h has all old exports, which is probably not needed, most can go to gpencil_intern.h Also added Makefile fixes for sculpt
Diffstat (limited to 'source/blender/editors/include/ED_sequencer.h')
-rw-r--r--source/blender/editors/include/ED_sequencer.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/source/blender/editors/include/ED_sequencer.h b/source/blender/editors/include/ED_sequencer.h
new file mode 100644
index 00000000000..2a3b5445dfe
--- /dev/null
+++ b/source/blender/editors/include/ED_sequencer.h
@@ -0,0 +1,31 @@
+/**
+ * $Id:
+ *
+ * ***** BEGIN GPL LICENSE BLOCK *****
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * The Original Code is Copyright (C) 2009, Blender Foundation
+ *
+ * ***** END GPL LICENSE BLOCK *****
+ */
+
+#ifndef ED_SEQUENCER_H
+#define ED_SEQUENCER_H
+
+#define SEQ_ZOOM_FAC(szoom) (szoom > 0)? (szoom) : (szoom == 0)? (1.0) : (-1.0/szoom)
+
+
+#endif /* ED_SEQUENCER_H */