File: Synth.cpp

package info (click to toggle)
zynaddsubfx 3.0.6-7.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 65,848 kB
  • sloc: cpp: 124,436; ansic: 39,936; objc: 2,496; makefile: 1,369; python: 567; sh: 566; ruby: 178; javascript: 50
file content (12 lines) | stat: -rw-r--r-- 299 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
#include "Synth.h"
#include "EffectMgr.h"
#include "util.h"
#include <rtosc/ports.h>
using namespace rtosc;

Ports Synth::ports = {
    PARAM(Synth, volume, volume, log, 1e-3, 1, "loudness of output"),
    RECUR(Synth, Oscillator, oscil, oscil),
    RECURS(Synth, EffectMgr, effect, effects, 8)

};