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
|
|
|
|
|
2018-08-20 15:51:42 +08:00
|
|
|
#include "WindowUtil.hpp"
|
2018-08-19 07:30:53 +08:00
|
|
|
|
2021-12-24 21:31:27 +08:00
|
|
|
namespace sf
|
2018-08-19 07:30:53 +08:00
|
|
|
{
|
2022-02-16 01:43:18 +08:00
|
|
|
struct BlendMode;
|
2021-12-24 21:31:27 +08:00
|
|
|
class Color;
|
2021-12-24 08:18:33 +08:00
|
|
|
class Transform;
|
|
|
|
|
2022-01-12 05:40:51 +08:00
|
|
|
std::ostream& operator <<(std::ostream& os, const BlendMode& blendMode);
|
2021-12-29 13:03:15 +08:00
|
|
|
std::ostream& operator <<(std::ostream& os, const Color& color);
|
2021-12-24 08:18:33 +08:00
|
|
|
std::ostream& operator <<(std::ostream& os, const Transform& transform);
|
2018-08-19 07:30:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // SFML_TESTUTILITIES_GRAPHICS_HPP
|