summaryrefslogtreecommitdiff
path: root/src/video/video_driver.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/video/video_driver.hpp')
-rw-r--r--src/video/video_driver.hpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/video/video_driver.hpp b/src/video/video_driver.hpp
index 4b2de253a..8c2b9d437 100644
--- a/src/video/video_driver.hpp
+++ b/src/video/video_driver.hpp
@@ -150,6 +150,15 @@ public:
virtual void EditBoxGainedFocus() {}
/**
+ * Get a list of refresh rates of each available monitor.
+ * @return A vector of the refresh rates of all available monitors.
+ */
+ virtual std::vector<int> GetListOfMonitorRefreshRates()
+ {
+ return {};
+ }
+
+ /**
* Get a suggested default GUI zoom taking screen DPI into account.
*/
virtual ZoomLevel GetSuggestedUIZoom()