1 2 3 4 5 6 7 8 9 10 11 12 13 14
// SPDX-License-Identifier: MIT OR Apache-2.0 use j2k_core::PixelFormat; pub(crate) fn supports_metal_format(fmt: PixelFormat) -> bool { matches!( fmt, PixelFormat::Gray8 | PixelFormat::Rgb8 | PixelFormat::Rgba8 | PixelFormat::Gray16 | PixelFormat::Rgb16 ) }