2018-08-19 07:30:53 +08:00
|
|
|
// Header for SFML unit tests.
|
|
|
|
//
|
2021-12-29 13:03:15 +08:00
|
|
|
// 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.
|
2018-08-19 07:30:53 +08:00
|
|
|
|
|
|
|
#ifndef SFML_TESTUTILITIES_GRAPHICS_HPP
|
|
|
|
#define SFML_TESTUTILITIES_GRAPHICS_HPP
|
|
|
|
|
2022-03-25 02:14:49 +08:00
|
|
|
#include <SFML/Graphics/Rect.hpp>
|
2022-07-05 00:20:58 +08:00
|
|
|
|
|
|
|
#include <WindowUtil.hpp>
|
2022-03-07 03:43:48 +08:00
|
|
|
#include <iomanip>
|
|
|
|
#include <limits>
|
2022-03-25 02:14:49 +08:00
|
|
|
|
2021-12-24 21:31:27 +08:00
|
|
|
namespace sf
|
2018-08-19 07:30:53 +08:00
|
|
|
{
|
2022-07-05 00:20:58 +08:00
|
|
|
struct BlendMode;
|
|
|
|
class Color;
|
|
|
|
class Transform;
|
|
|
|
|
|
|
|
std::ostream& operator<<(std::ostream& os, const BlendMode& blendMode);
|
|
|
|
std::ostream& operator<<(std::ostream& os, const Color& color);
|
|
|
|
std::ostream& operator<<(std::ostream& os, const Transform& transform);
|
|
|
|
|
|
|
|
template <typename T>
|
2022-07-05 13:46:34 +08:00
|
|
|
std::ostream& operator<<(std::ostream& os, const Rect<T>& rect)
|
2022-07-05 00:20:58 +08:00
|
|
|
{
|
|
|
|
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;
|
2018-08-19 07:30:53 +08:00
|
|
|
}
|
2022-07-05 00:20:58 +08:00
|
|
|
} // namespace sf
|
2018-08-19 07:30:53 +08:00
|
|
|
|
2022-05-03 06:38:33 +08:00
|
|
|
bool operator==(const sf::Transform& lhs, const Approx<sf::Transform>& rhs);
|
|
|
|
|
2018-08-19 07:30:53 +08:00
|
|
|
#endif // SFML_TESTUTILITIES_GRAPHICS_HPP
|