Use comptime for fully declarative LV2 and Custom commands #14

Merged
luna merged 69 commits from declarative-commands into master 2020-06-02 21:37:47 +00:00
1 changed files with 4 additions and 1 deletions
Showing only changes of commit 9801e303c0 - Show all commits

View File

@ -306,7 +306,10 @@ pub const Runner = struct {
.saturator => try self.newRunCommandSingle(cmd, .saturator),
.vintagedelay => try self.newRunCommandSingle(cmd, .vintagedelay),
.noise, .wildnoise, .write, .embed => |tag| try self.newRunCommandSingle(cmd, tag),
.noise => try self.newRunCommandSingle(cmd, .noise),
.wildnoise => try self.newRunCommandSingle(cmd, .wildnoise),
.write => try self.newRunCommandSingle(cmd, .write),
.embed => try self.newRunCommandSingle(cmd, .embed),
else => {
std.debug.warn("TODO support {}\n", .{@tagName(cmd.tag)});