Home
last modified time | relevance | path

Searched refs:cursor_info (Results 1 – 1 of 1) sorted by relevance

/external/webrtc/webrtc/modules/desktop_capture/
Dmouse_cursor_monitor_win.cc86 CURSORINFO cursor_info; in Capture() local
87 cursor_info.cbSize = sizeof(CURSORINFO); in Capture()
88 if (!GetCursorInfo(&cursor_info)) { in Capture()
93 if (last_cursor_ != cursor_info.hCursor) { in Capture()
94 last_cursor_ = cursor_info.hCursor; in Capture()
97 CreateMouseCursorFromHCursor(desktop_dc_, cursor_info.hCursor)); in Capture()
105 DesktopVector position(cursor_info.ptScreenPos.x, cursor_info.ptScreenPos.y); in Capture()
106 bool inside = cursor_info.flags == CURSOR_SHOWING; in Capture()
116 HWND windowUnderCursor = WindowFromPoint(cursor_info.ptScreenPos); in Capture()