better effects support with nested sequences

This commit is contained in:
itsmattkc
2018-08-03 09:51:38 +10:00
parent 4700d02e6f
commit 20fc7a2814
7 changed files with 44 additions and 9 deletions
+6
View File
@@ -131,6 +131,12 @@ void Clip::run_video_pre_effect_stack(long playhead, int* anchor_x, int* anchor_
}
}
void Clip::run_video_post_effect_stack() {
for (int j=0;j<effects.size();j++) {
if (effects.at(j)->is_enabled()) effects.at(j)->post_gl();
}
}
Clip::~Clip() {
if (open) {
close_clip(this);