HomeSort by relevance Sort by last modified time
    Searched full:cursor_info (Results 1 - 1 of 1) sorted by null

  /external/webrtc/webrtc/modules/desktop_capture/
mouse_cursor_monitor_win.cc 86 CURSORINFO cursor_info; local
87 cursor_info.cbSize = sizeof(CURSORINFO);
88 if (!GetCursorInfo(&cursor_info)) {
93 if (last_cursor_ != cursor_info.hCursor) {
94 last_cursor_ = cursor_info.hCursor;
95 // Note that |cursor_info.hCursor| does not need to be freed.
97 CreateMouseCursorFromHCursor(desktop_dc_, cursor_info.hCursor));
105 DesktopVector position(cursor_info.ptScreenPos.x, cursor_info.ptScreenPos.y);
106 bool inside = cursor_info.flags == CURSOR_SHOWING
    [all...]

Completed in 75 milliseconds