SFML/test/TestUtilities/WindowUtil.cpp
2021-12-24 15:06:32 +01:00

16 lines
416 B
C++

// Note: No need to increase compile time by including TestUtilities/Window.hpp
#include <SFML/Window/VideoMode.hpp>
#include <sstream>
#include <doctest.h>
namespace sf
{
doctest::String toString(const sf::VideoMode& videoMode)
{
std::ostringstream stream;
stream << videoMode.width << "x" << videoMode.height << "x" << videoMode.bitsPerPixel;
return stream.str().c_str();
}
}