Searched defs:window_rect (Results 1 - 3 of 3) sorted by relevance

/external/webrtc/webrtc/modules/desktop_capture/
H A Dcropping_window_capturer.cc91 DesktopRect window_rect = GetWindowRectInVirtualScreen(); local
92 if (window_rect.is_empty()) {
99 CreateCroppedDesktopFrame(screen_frame.release(), window_rect));
H A Dcropping_window_capturer_win.cc195 DesktopRect window_rect; local
197 if (!GetCroppedWindowRect(hwnd, &window_rect, &original_rect)) {
199 return window_rect;
201 window_rect.IntersectWith(window_region_rect_);
203 // Convert |window_rect| to be relative to the top-left of the virtual screen.
205 window_rect.IntersectWith(screen_rect);
206 window_rect.Translate(-screen_rect.left(), -screen_rect.top());
207 return window_rect;
/external/mesa3d/src/gallium/state_trackers/wgl/
H A Dstw_framebuffer.c119 RECT window_rect; local
163 GetWindowRect(fb->hWnd, &window_rect)) {
164 fb->client_rect.left = client_pos.x - window_rect.left;
165 fb->client_rect.top = client_pos.y - window_rect.top;
176 debug_printf("%s: window_rect = (%li, %li) - (%li, %li)\n",
178 window_rect.left, window_rect.top,
179 window_rect.right, window_rect.bottom);

Completed in 1883 milliseconds