2018-08-19 07:30:53 +08:00
|
|
|
// Note: No need to increase compile time by including TestUtilities/Window.hpp
|
|
|
|
#include <SFML/Window/VideoMode.hpp>
|
|
|
|
#include <sstream>
|
|
|
|
|
2021-12-24 21:31:27 +08:00
|
|
|
#include <doctest.h>
|
|
|
|
|
|
|
|
namespace sf
|
2018-08-19 07:30:53 +08:00
|
|
|
{
|
2021-12-24 21:31:27 +08:00
|
|
|
doctest::String toString(const sf::VideoMode& videoMode)
|
2018-08-19 07:30:53 +08:00
|
|
|
{
|
|
|
|
std::ostringstream stream;
|
|
|
|
stream << videoMode.width << "x" << videoMode.height << "x" << videoMode.bitsPerPixel;
|
2021-12-24 21:31:27 +08:00
|
|
|
return stream.str().c_str();
|
2018-08-19 07:30:53 +08:00
|
|
|
}
|
|
|
|
}
|