NeuralAmpModeler-rs 3.0.2

An opinionated, high-performance Neural Amp Modeler (NAM) client and core implementation in Rust for Linux/PipeWire and CLAP plugins.
Documentation
1
2
3
4
5
6
7
8
9
10
11
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2026 Fábio Henrique de Lima Silva (fhl.bsb@gmail.com) All rights reserved.
//! Vertical VU meter with tricolor gradient, analog peak hold and clipping LED.
//! Dispatches rendering to the appropriate backend (glow or CPU fallback).

pub mod cpu;
pub mod glow;
pub mod orchestrator;
pub mod readout;

pub(crate) use orchestrator::draw_vertical_meter;