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:
authorCampbell Barton <ideasman42@gmail.com>2014-11-10 21:39:20 +0300
committerCampbell Barton <ideasman42@gmail.com>2014-11-10 21:39:59 +0300
commit99ded01b64a5eb1d6b190ae5a64b70fcfe4347d4 (patch)
treec505c81953d32b90745a67982bc5640e17a10f96
parent61f86a7beecc53ad3b0d8c7e4cb9e115cc04dc4d (diff)
Sequencer: undefine SEQ_BEGIN/SEQ_END (see comment)
-rw-r--r--source/blender/editors/space_sequencer/sequencer_draw.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/editors/space_sequencer/sequencer_draw.c b/source/blender/editors/space_sequencer/sequencer_draw.c
index 1eb61f4bfd7..3ca74a75398 100644
--- a/source/blender/editors/space_sequencer/sequencer_draw.c
+++ b/source/blender/editors/space_sequencer/sequencer_draw.c
@@ -82,6 +82,10 @@
/* Note, Don't use SEQ_BEGIN/SEQ_END while drawing!
* it messes up transform, - Campbell */
+#undef SEQ_BEGIN
+#undef SEQP_BEGIN
+#undef SEQ_END
+
static void draw_shadedstrip(Sequence *seq, unsigned char col[3], float x1, float y1, float x2, float y2);
static void get_seq_color3ubv(Scene *curscene, Sequence *seq, unsigned char col[3])