2024-09-24 03:55:33 +08:00
|
|
|
#include "WindowUtil.hpp"
|
|
|
|
|
2018-08-19 07:30:53 +08:00
|
|
|
#include <SFML/Window/VideoMode.hpp>
|
2022-07-05 00:20:58 +08:00
|
|
|
|
2021-12-29 13:03:15 +08:00
|
|
|
#include <ostream>
|
2024-02-08 21:28:57 +08:00
|
|
|
#include <string>
|
|
|
|
|
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
|
2018-08-19 07:30:53 +08:00
|
|
|
{
|
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;
|
2018-08-19 07:30:53 +08:00
|
|
|
}
|
2022-07-05 00:20:58 +08:00
|
|
|
} // namespace sf
|