leptos-helios 0.8.1

High-performance Rust visualization library with Canvas2D, WebGPU, and WebAssembly support
Documentation
//! GPU utilities and compute shaders

/// GPU-related utilities and compute shader management
pub struct GpuManager {
    // Placeholder for GPU management
}

impl Default for GpuManager {
    fn default() -> Self {
        Self::new()
    }
}

impl GpuManager {
    /// Creates a new GPU manager
    ///
    /// # Returns
    ///
    /// Returns a new `GpuManager` instance
    pub fn new() -> Self {
        Self {}
    }
}