Lines Matching defs:arg
31 std::ostream& operator<<(std::ostream& str, const std::vector<T>& arg)
33 str << genesys::format_vector_unsigned(4, arg) << '\n';
37 inline std::ostream& operator<<(std::ostream& str, const genesys::PixelFormat& arg)
39 str << static_cast<unsigned>(arg);
43 inline std::ostream& operator<<(std::ostream& str, const genesys::Pixel& arg)
45 str << "{ " << arg.r << ", " << arg.g << ", " << arg.b << " }";
49 inline std::ostream& operator<<(std::ostream& str, const genesys::RawPixel& arg)
53 for (auto el : arg.data) {