forked from RustAudio/vst-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* See changelog for change details Co-authored-by: doomy <[email protected]>
- Loading branch information
Showing
13 changed files
with
81 additions
and
54 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
[package] | ||
name = "vst" | ||
version = "0.2.1" | ||
version = "0.3.0" | ||
edition = "2021" | ||
authors = [ | ||
"Marko Mijalkovic <[email protected]>", | ||
"Boscop", | ||
|
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
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
use std::{mem, slice}; | ||
|
||
use api; | ||
use crate::api; | ||
|
||
/// A VST event. | ||
#[derive(Copy, Clone)] | ||
|
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
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,12 +1,12 @@ | ||
//! A collection of commonly used items for implement a Plugin | ||
#[doc(no_inline)] | ||
pub use api::{Events, Supported}; | ||
pub use crate::api::{Events, Supported}; | ||
#[doc(no_inline)] | ||
pub use buffer::{AudioBuffer, SendEventBuffer}; | ||
pub use crate::buffer::{AudioBuffer, SendEventBuffer}; | ||
#[doc(no_inline)] | ||
pub use event::{Event, MidiEvent}; | ||
pub use crate::event::{Event, MidiEvent}; | ||
#[doc(no_inline)] | ||
pub use plugin::{CanDo, Category, HostCallback, Info, Plugin, PluginParameters}; | ||
pub use crate::plugin::{CanDo, Category, HostCallback, Info, Plugin, PluginParameters}; | ||
#[doc(no_inline)] | ||
pub use util::{AtomicFloat, ParameterTransfer}; | ||
pub use crate::util::{AtomicFloat, ParameterTransfer}; |