mirror of
https://github.com/vsariola/sointu.git
synced 2025-11-12 12:52:53 -05:00
The compiled player does not support multithreading, but with this, users can already start composing songs with slightly less powerful machines, even when targeting high-end machines. Related to #199
12 lines
184 B
Go
12 lines
184 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/vsariola/sointu"
|
|
"github.com/vsariola/sointu/vm"
|
|
)
|
|
|
|
var Synthers = []sointu.Synther{
|
|
vm.GoSynther{},
|
|
vm.MakeMultithreadSynther(vm.GoSynther{}),
|
|
}
|