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.
|
2023-01-18 12:51:08 +08:00
|
|
|
// This ensures that string conversions are visible and can be used by Catch2 for debug output.
|
2018-08-19 07:30:53 +08:00
|
|
|
|
2022-12-21 12:17:38 +08:00
|
|
|
#pragma once
|
2018-08-19 07:30:53 +08:00
|
|
|
|
2024-02-08 21:28:57 +08:00
|
|
|
#include <SystemUtil.hpp>
|
2023-04-13 21:50:19 +08:00
|
|
|
#include <iosfwd>
|
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;
|
2024-09-24 03:55:33 +08:00
|
|
|
enum class StencilComparison;
|
|
|
|
enum class StencilUpdateOperation;
|
2015-04-29 11:28:02 +08:00
|
|
|
struct StencilMode;
|
2022-07-05 00:20:58 +08:00
|
|
|
class Color;
|
|
|
|
class Transform;
|
|
|
|
|
2023-04-13 21:50:19 +08:00
|
|
|
template <typename>
|
|
|
|
class Rect;
|
|
|
|
|
2022-07-05 00:20:58 +08:00
|
|
|
std::ostream& operator<<(std::ostream& os, const BlendMode& blendMode);
|
2024-09-24 03:55:33 +08:00
|
|
|
std::ostream& operator<<(std::ostream& os, const StencilComparison& comparison);
|
|
|
|
std::ostream& operator<<(std::ostream& os, const StencilUpdateOperation& updateOperation);
|
2015-04-29 11:28:02 +08:00
|
|
|
std::ostream& operator<<(std::ostream& os, const StencilMode& stencilMode);
|
2024-06-30 00:48:52 +08:00
|
|
|
std::ostream& operator<<(std::ostream& os, Color color);
|
2022-07-05 00:20:58 +08:00
|
|
|
std::ostream& operator<<(std::ostream& os, const Transform& transform);
|
|
|
|
|
|
|
|
template <typename T>
|
2023-04-13 21:50:19 +08:00
|
|
|
std::ostream& operator<<(std::ostream& os, const Rect<T>& rect);
|
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);
|
2023-09-28 12:27:20 +08:00
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
bool operator==(const sf::Rect<T>& lhs, const Approx<sf::Rect<T>>& rhs)
|
|
|
|
{
|
2024-06-16 00:42:23 +08:00
|
|
|
return lhs.position == Approx(rhs.value.position) && lhs.size == Approx(rhs.value.size);
|
2023-09-28 12:27:20 +08:00
|
|
|
}
|