/* SPDX-License-Identifier: MIT */ #ifndef RGBDS_GFX_PAL_SORTING_HPP #define RGBDS_GFX_PAL_SORTING_HPP #include #include #include #include #include #include "gfx/rgba.hpp" struct Palette; namespace sorting { void indexed(std::vector &palettes, int palSize, png_color const *palRGB, int palAlphaSize, png_byte *palAlpha); void grayscale(std::vector &palettes, std::array, 0x8001> const &colors); void rgb(std::vector &palettes); } // namespace sorting #endif // RGBDS_GFX_PAL_SORTING_HPP