SFML/test/TestUtilities/WindowUtil.cpp

24 lines
615 B
C++
Raw Normal View History

// Note: No need to increase compile time by including TestUtilities/Window.hpp
#include <SFML/Window/VideoMode.hpp>
2022-07-05 00:20:58 +08:00
#include <ostream>
2021-12-24 21:31:27 +08:00
2023-01-18 12:51:08 +08:00
std::string runDisplayTests()
{
#ifdef SFML_RUN_DISPLAY_TESTS
return "";
#else
// https://github.com/catchorg/Catch2/blob/devel/docs/test-cases-and-sections.md#special-tags
// This tag tells Catch2 to not run a given TEST_CASE
return "[.display]";
#endif
}
2021-12-24 21:31:27 +08:00
namespace sf
{
2022-07-05 13:46:34 +08:00
std::ostream& operator<<(std::ostream& os, const VideoMode& videoMode)
2022-07-05 00:20:58 +08:00
{
2022-07-05 13:57:04 +08:00
return os << videoMode.size.x << "x" << videoMode.size.y << "x" << videoMode.bitsPerPixel;
}
2022-07-05 00:20:58 +08:00
} // namespace sf