//! Common GPU utilities for texture and sampler creation.
//!
//! This module provides reusable helper functions for common wgpu operations
//! to reduce code duplication across renderer modules.
use ;
/// Create a sampler with the specified filter mode and ClampToEdge address mode.
///
/// This allows choosing between nearest-neighbor (sharp/pixel art) and
/// linear (smooth) filtering for texture sampling.