mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 04:41:05 +08:00
13 lines
357 B
C++
13 lines
357 B
C++
// Note: No need to increase compile time by including TestUtilities/Window.hpp
|
|
#include <SFML/Window/VideoMode.hpp>
|
|
#include <ostream>
|
|
|
|
namespace sf
|
|
{
|
|
std::ostream& operator <<(std::ostream& os, const sf::VideoMode& videoMode)
|
|
{
|
|
os << videoMode.size.x << "x" << videoMode.size.y << "x" << videoMode.bitsPerPixel;
|
|
return os;
|
|
}
|
|
}
|