//! Byte-to-word padding utilities for GPU buffer upload.
//!
//! wgpu buffer uploads are most naturally expressed in `u32` words. This module
//! pads arbitrary byte slices to little-endian words so the backend can create
//! storage buffers without per-byte CPU overhead.
/// Pad bytes to u32 words (little-endian, zero-padded).
pub