// Copyright (c) 2023 Xu Shaohua <shaohua@biofan.org>. All rights reserved.
// Use of this source is governed by Lesser General Public License that can be found
// in the LICENSE file.
/// Swizzles byte order of |count| 32-bit pixels, swapping R and B. (RGBA <-> BGRA)
pub fn swap_rb(_dest: &mut [u32], _src: &[u32], _count: i32) {
unimplemented!()
}