#include <cstdint>
#include "elem.h"
Go to the source code of this file.
|
| bool | mf::operator== (const mono_color &a, const mono_color &b) |
| |
| bool | mf::operator!= (const mono_color &a, const mono_color &b) |
| |
| bool | mf::operator== (const rgb_color &a, const rgb_color &b) |
| |
| bool | mf::operator!= (const rgb_color &a, const rgb_color &b) |
| |
| bool | mf::operator== (const rgba_color &a, const rgba_color &b) |
| |
| bool | mf::operator!= (const rgba_color &a, const rgba_color &b) |
| |
| bool | mf::operator== (const ycbcr_color &a, const ycbcr_color &b) |
| |
| bool | mf::operator!= (const ycbcr_color &a, const ycbcr_color &b) |
| |
| template<typename Output , typename Input > |
| Output | mf::color_convert (const Input &) |
| | Color conversion, specialized for different color formats. More...
|
| |
| template<> |
| rgb_color | mf::color_convert (const ycbcr_color &in) |
| |
| template<> |
| rgba_color | mf::color_convert (const rgb_color &in) |
| |
| template<> |
| rgb_color | mf::color_convert (const mono_color &in) |
| |
| template<> |
| mono_color | mf::color_convert (const ycbcr_color &in) |
| |
| template<> |
| rgba_color | mf::color_convert (const ycbcr_color &in) |
| |
| template<> |
| rgb_color | mf::color_convert (const rgba_color &in) |
| |