First commit of brand new rewrite

This commit is contained in:
itsmattkc
2018-05-30 03:24:12 +10:00
commit 244c092591
86 changed files with 8016 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#include "effect.h"
#include "panels/panels.h"
#include "panels/viewer.h"
#include "ui/viewerwidget.h"
Effect::Effect(Clip* c) : parent_clip(c)
{
name = "<unnamed effect>";
type = EFFECT_TYPE_INVALID;
}
void Effect::field_changed() {
panel_viewer->viewer_widget->update();
}
void Effect::process_gl(int* anchor_x, int* anchor_y) {}
void Effect::process_audio(uint8_t* samples, int nb_bytes) {}