Changeset 47418 in vbox
- Timestamp:
- Jul 26, 2013 11:08:18 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Input/UsbMouse.cpp
r47397 r47418 927 927 928 928 cbCopy = sizeof(pReport->mt); 929 LogRel3(("Multi-touch event, x=%u, y=%u, report size %d\n", 930 pReport->mt.x, pReport->mt.y, cbCopy)); 929 LogRel3(("Multi-touch event, x=%u, y=%u, cContact=%u, fContact=%02x, report size %d\n", 930 (unsigned)pReport->mt.x, (unsigned)pReport->mt.y, 931 (unsigned)pReport->mt.cContact, (unsigned)pReport->mt.fContact, 932 cbCopy)); 931 933 break; 932 934 } … … 1046 1048 */ 1047 1049 pThis->PtrDelta.u.MultiTouch.fContact = fContact; 1048 pThis->PtrDelta.u.MultiTouch.x = x ;1049 pThis->PtrDelta.u.MultiTouch.y = y ;1050 pThis->PtrDelta.u.MultiTouch.x = x >> pThis->u8CoordShift; 1051 pThis->PtrDelta.u.MultiTouch.y = y >> pThis->u8CoordShift; 1050 1052 pThis->PtrDelta.u.MultiTouch.cContact = cContact; 1051 1053
Note:
See TracChangeset
for help on using the changeset viewer.