Changeset 95466 in vbox
- Timestamp:
- Jul 1, 2022 10:27:14 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/display-svga-x11.cpp
r95145 r95466 1247 1247 DisplayModeR mode = f86CVTMode(iXRes, iYRes, 60 /*VRefresh */, true /*Reduced */, false /* Interlaced */); 1248 1248 1249 pModeInfo->dotClock = mode.Clock; 1249 /* Convert kHz to Hz: f86CVTMode returns clock value in units of kHz, 1250 * XRRCreateMode will expect it in units of Hz. */ 1251 pModeInfo->dotClock = mode.Clock * 1000; 1252 1250 1253 pModeInfo->hSyncStart = mode.HSyncStart; 1251 1254 pModeInfo->hSyncEnd = mode.HSyncEnd;
Note:
See TracChangeset
for help on using the changeset viewer.