aumate 0.2.8

Cross-platform desktop automation library with GUI support
Documentation
//! WGPU rendering backend (GPU acceleration)

#[cfg(feature = "gpu")]
use wgpu;

#[cfg(feature = "gpu")]
use egui_wgpu;

/// WGPU backend for GPU-accelerated rendering
#[cfg(feature = "gpu")]
pub struct WgpuBackend {
    // GPU resources would be stored here
}

#[cfg(feature = "gpu")]
impl WgpuBackend {
    pub fn new() -> Self {
        Self {}
    }
}