SFML/test/TestUtilities/GraphicsUtil.cpp

20 lines
605 B
C++
Raw Normal View History

// Note: No need to increase compile time by including TestUtilities/Graphics.hpp
#include <SFML/Graphics/Color.hpp>
#include <sstream>
2021-12-24 21:31:27 +08:00
#include <doctest.h>
2021-12-24 21:31:27 +08:00
namespace sf
{
2021-12-24 21:31:27 +08:00
doctest::String toString(const sf::Color& color)
{
std::ostringstream stream;
stream << "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) << ")";
2021-12-24 21:31:27 +08:00
return stream.str().c_str();
}
}