summaryrefslogtreecommitdiff
path: root/kms++/src/connector.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kms++/src/connector.cpp')
-rw-r--r--kms++/src/connector.cpp19
1 files changed, 18 insertions, 1 deletions
diff --git a/kms++/src/connector.cpp b/kms++/src/connector.cpp
index 92700af..7c6c179 100644
--- a/kms++/src/connector.cpp
+++ b/kms++/src/connector.cpp
@@ -132,7 +132,24 @@ Videomode Connector::get_mode(unsigned xres, unsigned yres, float vrefresh, bool
if (ilace != m.interlace())
continue;
- if (vrefresh && std::abs(m.calculated_vrefresh() - vrefresh) >= 0.001)
+ if (vrefresh && vrefresh != m.calculated_vrefresh())
+ continue;
+
+ return m;
+ }
+
+ // If not found, do another round using rounded vrefresh
+
+ for (int i = 0; i < c->count_modes; i++) {
+ Videomode m = drm_mode_to_video_mode(c->modes[i]);
+
+ if (m.hdisplay != xres || m.vdisplay != yres)
+ continue;
+
+ if (ilace != m.interlace())
+ continue;
+
+ if (vrefresh && vrefresh != roundf(m.calculated_vrefresh()))
continue;
return m;