Home | History | Annotate | Download | only in vboxvideo

Lines Matching refs:hints

65  * Check that the position hints provided by the host are suitable for GNOME
66 * shell (i.e. all screens disjoint and hints for all enabled screens) and if
67 * not replace them with default ones. Providing valid hints improves the
110 /* Query the host for the most recent video mode hints. */
117 struct vbva_modehint *hints;
137 hints = &vbox->last_mode_hints[vbox_conn->vbox_crtc->crtc_id];
138 if (hints->magic != VBVAMODEHINT_MAGIC)
141 disconnected = !(hints->enabled);
143 vbox_conn->mode_hint.width = hints->cx;
144 vbox_conn->mode_hint.height = hints->cy;
145 vbox_conn->vbox_crtc->x_hint = hints->dx;
146 vbox_conn->vbox_crtc->y_hint = hints->dy;
158 hints->cx * 4, hints->cx,
159 hints->cy, 0, flags);