mirror of
https://github.com/SFML/SFML.git
synced 2024-11-28 22:31:09 +08:00
15 lines
427 B
C++
15 lines
427 B
C++
// Note: No need to increase compile time by including TestUtilities/Window.hpp
|
|
#include <SFML/Window/VideoMode.hpp>
|
|
#include <sstream>
|
|
|
|
// String conversions for Catch framework
|
|
namespace Catch
|
|
{
|
|
std::string toString(const sf::VideoMode& videoMode)
|
|
{
|
|
std::ostringstream stream;
|
|
stream << videoMode.width << "x" << videoMode.height << "x" << videoMode.bitsPerPixel;
|
|
return stream.str();
|
|
}
|
|
}
|