File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,6 @@ PluginLoad(BoringMixer2UGens) {
43
43
ft = inTable;
44
44
// registerUnit takes the place of the Define*Unit functions. It automatically checks for the presence of a
45
45
// destructor function.
46
- // However, it does not seem to be possible to disable buffer aliasing with the C++ header.
47
- registerUnit<BoringMixer2>(ft, " BoringMixer2" );
46
+ // starting from version 3.11 it also allows to disable buffer aliasing
47
+ registerUnit<BoringMixer2>(ft, " BoringMixer2" , 0 );
48
48
}
Original file line number Diff line number Diff line change @@ -131,6 +131,6 @@ PluginLoad(MySawUGens)
131
131
132
132
// registerUnit takes the place of the Define*Unit functions. It automatically checks for the presence of a
133
133
// destructor function.
134
- // However, it does not seem to be possible to disable buffer aliasing with the C++ header.
135
- registerUnit<MySaw>(ft, " MySaw" );
134
+ // starting from version 3.11 it also allows to disable buffer aliasing
135
+ registerUnit<MySaw>(ft, " MySaw" , 0 );
136
136
}
Original file line number Diff line number Diff line change @@ -131,6 +131,6 @@ PluginLoad(MySaw2UGens)
131
131
132
132
// registerUnit takes the place of the Define*Unit functions. It automatically checks for the presence of a
133
133
// destructor function.
134
- // However, it does not seem to be possible to disable buffer aliasing with the C++ header.
135
- registerUnit<MySaw2>(ft, " MySaw2" );
134
+ // starting from version 3.11 it also allows to disable buffer aliasing
135
+ registerUnit<MySaw2>(ft, " MySaw2" , 0 );
136
136
}
You can’t perform that action at this time.
0 commit comments