diff options
| author | Tim Redfern <tim@herge.(none)> | 2013-06-24 18:48:27 +0100 |
|---|---|---|
| committer | Tim Redfern <tim@herge.(none)> | 2013-06-24 18:48:27 +0100 |
| commit | 38bc7e11aa796eea0fed963922013e25719a2723 (patch) | |
| tree | 3f3339bc781d98d1790fb6a7bd5e8c22efd2af1e /rotord/rotor.cpp | |
| parent | 631576efc4877cf665299c4544d7698bbb50e2d0 (diff) | |
working on blend modes using precalculated tables
Diffstat (limited to 'rotord/rotor.cpp')
| -rwxr-xr-x | rotord/rotor.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/rotord/rotor.cpp b/rotord/rotor.cpp index 37af5a1..887fc9f 100755 --- a/rotord/rotor.cpp +++ b/rotord/rotor.cpp @@ -18,12 +18,15 @@ Node_factory::Node_factory(){ add_type("video_cycler",new Video_cycler()); add_type("luma_levels",new Luma_levels()); add_type("echo_trails",new Echo_trails()); + add_type("time",new Time()); add_type("track_time",new Track_time()); add_type("comparison",new Comparison()); //TODO: alias to symbols add_type("arithmetic",new Arithmetic()); //TODO: alias to symbols add_type("signal_colour",new Signal_colour()); add_type("signal_greyscale",new Signal_greyscale()); add_type("image_arithmetic",new Image_arithmetic()); + add_type("random",new Random()); + add_type("blend",new Blend()); } bool Signal_input::connect(Signal_node* source) { |
