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-04 11:20:58 -05:00
#include <ostream>
2021-12-24 14:31:27 +01:00
2023-01-17 21:51:08 -07: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 14:31:27 +01:00
namespace sf
{
2022-07-04 23:46:34 -06:00
std::ostream& operator<<(std::ostream& os, const VideoMode& videoMode)
2022-07-04 11:20:58 -05:00
{
2022-07-04 23:57:04 -06:00
return os << videoMode.size.x << "x" << videoMode.size.y << "x" << videoMode.bitsPerPixel;
}
2022-07-04 11:20:58 -05:00
} // namespace sf