Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Bus system to replace naive Arc<Mutex<Buffer>> System #58

Merged
merged 32 commits into from
Jan 16, 2025
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
2bdd62c
Add new channels and example "test" plugin (temp)
exa04 Nov 4, 2024
b8d1c05
Remove old `Arc<Mutex>`'d peak buffer from test
exa04 Nov 4, 2024
761b92e
Add `enqueue_latest` to visualizer buffer
exa04 Nov 5, 2024
0144bae
WIP
exa04 Nov 5, 2024
6985aab
Allow MPMC scenarios via `blinkcast`
exa04 Nov 7, 2024
efecb0c
Add oscilloscope to new example
exa04 Nov 8, 2024
47773e3
Implement new system for RMS buffer
exa04 Nov 11, 2024
7049973
Temporarily remove lots of stuff
exa04 Dec 15, 2024
2f296ed
Start work on "accumulators" system
exa04 Dec 15, 2024
c0c464b
Accumulators progress
exa04 Dec 17, 2024
0e2789c
Re-add meter
exa04 Dec 17, 2024
77bc328
Move inline macros to impl
exa04 Dec 17, 2024
56d5440
Re-add oscilloscope
exa04 Dec 18, 2024
2fad50f
Re-add histogram
exa04 Dec 21, 2024
e7c50ab
Add new benchmark
exa04 Dec 21, 2024
b3587b1
WIP bus
exa04 Jan 4, 2025
011df7d
Add dispatchers for Graph, Meter and Oscilloscope
exa04 Jan 4, 2025
cf7953a
Fix meter size issue
exa04 Jan 4, 2025
84801ff
Implement histogram
exa04 Jan 4, 2025
6ca9884
Add lissajous
exa04 Jan 5, 2025
6aca503
Re-introduce peak graph example
exa04 Jan 5, 2025
48c244d
Rename benchmark
exa04 Jan 6, 2025
715b414
Update oscilloscope on draw
exa04 Jan 7, 2025
6777182
Make visualizers take in an Arc<Bus> directly
exa04 Jan 14, 2025
7421974
Add `subscribe` function to busses
exa04 Jan 14, 2025
b8217f6
Remove `is_empty`
exa04 Jan 14, 2025
7bb836c
Documentation and some re-structuring
exa04 Jan 14, 2025
4e39067
fmt
exa04 Jan 14, 2025
086a067
Update readme
exa04 Jan 16, 2025
7637729
Update screenshots
exa04 Jan 16, 2025
0dacf03
Add spectrum to visualizers example
exa04 Jan 16, 2025
5b34978
Update README.md
exa04 Jan 16, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Temporarily remove lots of stuff
exa04 committed Dec 15, 2024
commit 7049973a274864ce6ab7410e83fa7a37a4f64d1c
27 changes: 0 additions & 27 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ description = "Composable views and associated data structures for nih-plug UIs
resolver = "2"
members = [
"xtask",
"examples/visualizers", "examples/peak_graph", "examples/histogram", "examples/test_new"
"examples/visualizers"
]

[lib]
22 changes: 0 additions & 22 deletions examples/histogram/Cargo.toml

This file was deleted.

15 changes: 0 additions & 15 deletions examples/histogram/README.md

This file was deleted.

Binary file removed examples/histogram/doc/peak_graph.png
Binary file not shown.
71 changes: 0 additions & 71 deletions examples/histogram/src/editor.rs

This file was deleted.

123 changes: 0 additions & 123 deletions examples/histogram/src/lib.rs

This file was deleted.

6 changes: 0 additions & 6 deletions examples/histogram/src/main.rs

This file was deleted.

22 changes: 0 additions & 22 deletions examples/peak_graph/Cargo.toml

This file was deleted.

15 changes: 0 additions & 15 deletions examples/peak_graph/README.md

This file was deleted.

Empty file.
Loading