Skip to content

Commit

Permalink
Ddoc changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Piolat committed Jan 15, 2025
1 parent 57e05bc commit f4e0489
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 12 deletions.
5 changes: 3 additions & 2 deletions canvas/dplug/canvas/package.d
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/**
2D software renderer.
Fast 2D software renderer.
See an example of a Canvas-enabled UIElement in:
`dplug.flatwidgets.windowresizer.UIWindowResizer`
Expand All @@ -19,7 +20,7 @@
dplug:canvas is pretty fast and writes 4 pixels at once.
Bug: you can't use it on a widget that is full-size in your plugin.
Copyright: Copyright Chris Jones 2020.
Copyright: Copyright Guillaume Piolat 2020.
License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
Expand Down
1 change: 1 addition & 0 deletions clap/dplug/clap/package.d
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
/// CLAP plug-in client implementation.
module dplug.clap;

nothrow @nogc:
Expand Down
2 changes: 1 addition & 1 deletion flatwidgets/dplug/flatwidgets/package.d
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
Widgets and rendering-style that don't use the PBR system, and allow knobs from KnobMan.
Widgets and rendering-style that don't use the PBR layer.
Copyright: Guillaume Piolat 2015.
Copyright: Ethan Reker 2017.
Expand Down
4 changes: 2 additions & 2 deletions flp/dplug/flp/package.d
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
FL Plugin client package. This module is the public API.
FL Plugin client.
Copyright: Guillaume Piolat 2023.
License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
Expand All @@ -15,7 +15,7 @@ import dplug.core.runtime;
import dplug.flp.types;
import dplug.flp.client;


// Main entry point for FLP plugins.
template FLPEntryPoint(alias ClientClass)
{
Expand Down
10 changes: 3 additions & 7 deletions package.d
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
/++
Dplug is an open-source audio plug-in framework existing since 2013.
A plugin framework is a library whose aim is to make cross-platform audio development
a practical reality. As such, Dplug can be used to create audio effects (such as a VST 2.4)
for use in popular host programs (such as FLStudio, Logic, Pro Tools, Cubase...).
Dplug is a production, open-source audio plug-in
framework that exist since 2013. Maintained by Auburn
Sounds, who built all its products upon Dplug.
- [dplug.org](https://dplug.org/)
- [The Dplug Wiki](https://github.com/AuburnSounds/Dplug/wiki)
- [ARCHITECTURE.md](https://github.com/AuburnSounds/Dplug/blob/master/ARCHITECTURE.md)
+/
module dplug;

0 comments on commit f4e0489

Please sign in to comment.