-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from CICM/dev/v0.1.0
Dev/v0.1.0
- Loading branch information
Showing
22 changed files
with
750 additions
and
372 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,2 @@ | ||
- Mesure DSP time of the code | ||
- Use automatic optimizations with compile options | ||
- Check if FAUST supports in-place processing | ||
- Check why FAUST double option crashes | ||
- Add method to open the FAUST file in the default text editor | ||
- Add a default temporary FAUST file when no argument | ||
- Add support for saving parameters states |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import("stdfaust.lib"); | ||
|
||
process = _; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
declare name "Dummy"; | ||
declare version "1.0"; | ||
declare author "Heu... me..."; | ||
|
||
|
||
process = _ * param1 * param2 * (param3 / 3) * (param4 /4) | ||
with | ||
{ | ||
param1 = button("button"); | ||
param2 = checkbox("checkbox"); | ||
param3 = vslider("slider", 3, 0 , 3, 0.001); | ||
param4 = nentry("number", 4, 0 , 4, 1); | ||
}; |
Oops, something went wrong.