Skip to main content

mousefood/
macros.rs

1macro_rules! for_all_rgb_colors {
2    (
3        $inner:ident
4    ) => {
5        $inner!(Rgb555);
6        $inner!(Bgr555);
7        $inner!(Rgb565);
8        $inner!(Bgr565);
9        $inner!(Rgb666);
10        $inner!(Bgr666);
11        $inner!(Rgb888);
12        $inner!(Bgr888);
13    };
14}
15
16pub(crate) use for_all_rgb_colors;