SFML/test/TestUtilities/GraphicsUtil.hpp

30 lines
758 B
C++
Raw Permalink Normal View History

// Header for SFML unit tests.
//
// For a new graphics module test case, include this header.
2023-01-18 12:51:08 +08:00
// This ensures that string conversions are visible and can be used by Catch2 for debug output.
#pragma once
2022-07-05 00:20:58 +08:00
#include <WindowUtil.hpp>
#include <iosfwd>
#include <limits>
2021-12-24 21:31:27 +08:00
namespace sf
{
2022-07-05 00:20:58 +08:00
struct BlendMode;
class Color;
class Transform;
template <typename>
class Rect;
2022-07-05 00:20:58 +08:00
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>
std::ostream& operator<<(std::ostream& os, const Rect<T>& rect);
2022-07-05 00:20:58 +08:00
} // namespace sf
bool operator==(const sf::Transform& lhs, const Approx<sf::Transform>& rhs);