File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,6 @@ PluginLoad(BoringMixer2UGens) {
4343 ft = inTable;
4444 // registerUnit takes the place of the Define*Unit functions. It automatically checks for the presence of a
4545 // 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" , false );
4848}
Original file line number Diff line number Diff line change @@ -131,6 +131,6 @@ PluginLoad(MySawUGens)
131131
132132 // registerUnit takes the place of the Define*Unit functions. It automatically checks for the presence of a
133133 // 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" , false );
136136}
Original file line number Diff line number Diff line change @@ -131,6 +131,6 @@ PluginLoad(MySaw2UGens)
131131
132132 // registerUnit takes the place of the Define*Unit functions. It automatically checks for the presence of a
133133 // 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" , false );
136136}
You can’t perform that action at this time.
0 commit comments