Changeset 21867 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Jul 29, 2009 5:07:59 PM (15 years ago)
- Location:
- trunk/src/VBox/Additions/x11/vboxvideo
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/vboxvideo/vboxutils.c
r21227 r21867 141 141 if (rc) 142 142 { 143 if (fFeatures & VMMDEV_MOUSE_GUEST_CAN_ABSOLUTE) 144 /* Assume this will never be unloaded as long as the X session is 145 * running. */ 146 pVBox->mouseDriverLoaded = TRUE; 143 147 if ( (fFeatures & VMMDEV_MOUSE_HOST_CANNOT_HWPOINTER) 144 || ! (fFeatures & VMMDEV_MOUSE_GUEST_CAN_ABSOLUTE)145 || !(fFeatures & VMMDEV_MOUSE_HOST_CAN_ABSOLUTE)148 || !pVBox->mouseDriverLoaded 149 || !(fFeatures & VMMDEV_MOUSE_HOST_CAN_ABSOLUTE) 146 150 ) 147 151 rc = FALSE; -
trunk/src/VBox/Additions/x11/vboxvideo/vboxvideo.h
r21227 r21867 214 214 Bool useDevice; 215 215 Bool forceSWCursor; 216 /** Do we know that the guest mouse driver was loaded successfully? */ 217 Bool mouseDriverLoaded; 216 218 /** Are we currently switched to a virtual terminal? If so, it is not 217 219 * safe to touch the hardware. */
Note:
See TracChangeset
for help on using the changeset viewer.