SFML/test/TestUtilities/GraphicsUtil.hpp

39 lines
1.2 KiB
C++
Raw Normal View History

// Header for SFML unit tests.
//
// For a new graphics module test case, include this header.
2021-12-24 21:31:27 +08:00
// This ensures that string conversions are visible and can be used by doctest for debug output.
#ifndef SFML_TESTUTILITIES_GRAPHICS_HPP
#define SFML_TESTUTILITIES_GRAPHICS_HPP
#include <WindowUtil.hpp>
#include <SFML/Graphics/Rect.hpp>
#include <iomanip>
#include <limits>
2021-12-24 21:31:27 +08:00
namespace sf
{
struct BlendMode;
2021-12-24 21:31:27 +08:00
class Color;
2021-12-24 08:18:33 +08:00
class Transform;
2022-01-12 05:40:51 +08:00
std::ostream& operator <<(std::ostream& os, const BlendMode& blendMode);
std::ostream& operator <<(std::ostream& os, const Color& color);
2021-12-24 08:18:33 +08:00
std::ostream& operator <<(std::ostream& os, const Transform& transform);
template <typename T>
std::ostream& operator <<(std::ostream& os, const sf::Rect<T>& rect)
{
const auto flags = os.flags();
os << std::fixed << std::setprecision(std::numeric_limits<T>::max_digits10);
os << "(left=" << rect.left << ", top=" << rect.top << ", width=" << rect.width << ", height=" << rect.height << ")";
os.flags(flags);
return os;
}
}
bool operator==(const sf::Transform& lhs, const Approx<sf::Transform>& rhs);
#endif // SFML_TESTUTILITIES_GRAPHICS_HPP