|
OpenTTD Source
1.11.0-beta2
|
#include "../driver.h"#include "../core/geometry_type.hpp"#include "../core/math_func.hpp"#include "../gfx_func.h"#include "../settings_type.h"#include "../zoom_type.h"#include <chrono>#include <vector>Go to the source code of this file.
Data Structures | |
| class | VideoDriver |
| The base of all video drivers. More... | |
| struct | VideoDriver::VideoBufferLocker |
| Helper struct to ensure the video buffer is locked and ready for drawing. More... | |
Variables | |
| std::string | _ini_videodriver |
| The video driver a stored in the configuration file. | |
| std::vector< Dimension > | _resolutions |
| List of resolutions. | |
| Dimension | _cur_resolution |
| The current resolution. | |
| bool | _rightclick_emulate |
| Whether right clicking is emulated. | |
Base of all video drivers.
Definition in file video_driver.hpp.