NeuralAmpModeler-rs 3.0.1

An opinionated, high-performance Neural Amp Modeler (NAM) client and core implementation in Rust for Linux/PipeWire and CLAP plugins.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2026 Fábio Henrique de Lima Silva (fhl.bsb@gmail.com) All rights reserved.

pub(crate) mod drag_drop;
pub(crate) mod handler;
pub(crate) mod input_map;
pub(crate) mod lifecycle;
pub(crate) mod shaders;
pub(crate) mod state;

pub(crate) use state::NamPluginWindow;

#[cfg(test)]
#[path = "window_test.rs"]
mod window_test;