SFML/test/TestUtilities/GraphicsUtil.hpp
2024-09-24 18:42:31 -06:00

41 lines
1.2 KiB
C++

// Header for SFML unit tests.
//
// For a new graphics module test case, include this header.
// This ensures that string conversions are visible and can be used by Catch2 for debug output.
#pragma once
#include <SystemUtil.hpp>
#include <iosfwd>
namespace sf
{
struct BlendMode;
enum class StencilComparison;
enum class StencilUpdateOperation;
struct StencilMode;
class Color;
class Transform;
template <typename>
class Rect;
std::ostream& operator<<(std::ostream& os, const BlendMode& blendMode);
std::ostream& operator<<(std::ostream& os, const StencilComparison& comparison);
std::ostream& operator<<(std::ostream& os, const StencilUpdateOperation& updateOperation);
std::ostream& operator<<(std::ostream& os, const StencilMode& stencilMode);
std::ostream& operator<<(std::ostream& os, Color color);
std::ostream& operator<<(std::ostream& os, const Transform& transform);
template <typename T>
std::ostream& operator<<(std::ostream& os, const Rect<T>& rect);
} // namespace sf
bool operator==(const sf::Transform& lhs, const Approx<sf::Transform>& rhs);
template <typename T>
bool operator==(const sf::Rect<T>& lhs, const Approx<sf::Rect<T>>& rhs)
{
return lhs.position == Approx(rhs.value.position) && lhs.size == Approx(rhs.value.size);
}