Changeset 76937 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Jan 22, 2019 4:39:05 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 128314
- Location:
- trunk/src/VBox/Additions/linux/drm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/drm/vbox_drv.h
r76563 r76937 237 237 struct vbox_crtc *vbox_crtc; 238 238 struct { 239 u 16width;240 u 16height;239 u32 width; 240 u32 height; 241 241 bool disconnected; 242 242 } mode_hint; -
trunk/src/VBox/Additions/linux/drm/vbox_irq.c
r76553 r76937 159 159 disconnected = !(hints->fEnabled); 160 160 crtc_id = vbox_conn->vbox_crtc->crtc_id; 161 vbox_conn->mode_hint.width = hints->cx & 0x8fff;162 vbox_conn->mode_hint.height = hints->cy & 0x8fff;161 vbox_conn->mode_hint.width = hints->cx; 162 vbox_conn->mode_hint.height = hints->cy; 163 163 vbox_conn->vbox_crtc->x_hint = hints->dx; 164 164 vbox_conn->vbox_crtc->y_hint = hints->dy;
Note:
See TracChangeset
for help on using the changeset viewer.