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