summaryrefslogtreecommitdiff
path: root/src/params.rs
diff options
context:
space:
mode:
authorozpv <39195175+ozpv@users.noreply.github.com>2026-05-16 16:39:26 -0500
committerGitHub <noreply@github.com>2026-05-16 16:39:26 -0500
commit12ae71759075a98deed5728d972c50e7131c726f (patch)
tree950c53e0952d43aaa250c09c91ae4e1867eae7b0 /src/params.rs
parent31b83a1daf401e41a1c73484c0aec3016b795e3f (diff)
real time processing
Diffstat (limited to 'src/params.rs')
-rw-r--r--src/params.rs9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/params.rs b/src/params.rs
index 00782ba..c895bca 100644
--- a/src/params.rs
+++ b/src/params.rs
@@ -1,7 +1,12 @@
//! Contains all types and implementations related to parameter management.
use crate::{RetainPluginMainThread, window_size::WindowSize};
-use clack_extensions::{params::*, state::PluginStateImpl};
+use clack_extensions::{
+ params::{
+ ParamDisplayWriter, ParamInfo, ParamInfoFlags, ParamInfoWriter, PluginMainThreadParams,
+ },
+ state::PluginStateImpl,
+};
use clack_plugin::{
events::{event_types::ParamValueEvent, spaces::CoreEventSpace},
prelude::*,
@@ -18,7 +23,7 @@ use std::{
/// The default value of the order parameter.
const DEFAULT_ORDER: usize = 1000;
-pub const DEFAULT_WINDOW_SIZE: WindowSize = WindowSize::Size128;
+pub const DEFAULT_WINDOW_SIZE: WindowSize = WindowSize::Size32768;
/// A struct that manages the parameters for our plugin.
///