| It is not putting your mouse itself in absolute mode (only graphics tablets really operate in absolute mouse mode). It's just outputting absolute mode reports to the host. Absolute mouse HID report has a logical/physical min/max, not just delta.
Regardless of size of screen, min/max correspond to the boundaries in absolute mode. So it's just keeping track internally of the incremental relative accumulation of your mouse as you move it, and i assume, when you hit the min/max, swapping screens. I assume it's reporting a high enough min/max resolution to make this not happen crappily. The polling rate on mice is usually only 125hz (8ms), so it has plenty of time to handle the input. Even "gaming" mice are usually only 1000hz (1ms). I would guess, looking at it, that it takes a few microseconds to handle the mouse moves, max. |