2018-08-19 07:30:53 +08:00
|
|
|
// Note: No need to increase compile time by including TestUtilities/Graphics.hpp
|
|
|
|
#include <SFML/Graphics/Color.hpp>
|
2021-12-29 13:03:15 +08:00
|
|
|
#include <ostream>
|
2018-08-19 07:30:53 +08:00
|
|
|
|
2021-12-24 21:31:27 +08:00
|
|
|
namespace sf
|
2018-08-19 07:30:53 +08:00
|
|
|
{
|
2021-12-29 13:03:15 +08:00
|
|
|
std::ostream& operator <<(std::ostream& os, const sf::Color& color)
|
2018-08-19 07:30:53 +08:00
|
|
|
{
|
2021-12-29 13:03:15 +08:00
|
|
|
os << "0x" << std::hex << color.toInteger() << std::dec
|
|
|
|
<< " (r=" << static_cast<int>(color.r)
|
|
|
|
<< ", g=" << static_cast<int>(color.g)
|
|
|
|
<< ", b=" << static_cast<int>(color.b)
|
|
|
|
<< ", a=" << static_cast<int>(color.a) << ")";
|
2018-08-19 07:30:53 +08:00
|
|
|
|
2021-12-29 13:03:15 +08:00
|
|
|
return os;
|
2018-08-19 07:30:53 +08:00
|
|
|
}
|
|
|
|
}
|