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

1 2

  /external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
SDL_BView.h 84 virtual void Draw(BRect updateRect) {
88 dest.top = updateRect.top + yoff;
89 dest.left = updateRect.left + xoff;
90 dest.bottom = updateRect.bottom + yoff;
91 dest.right = updateRect.right + xoff;
92 DrawBitmap(image, updateRect, dest);
94 DrawBitmap(image, updateRect, updateRect);
98 virtual void DrawAsync(BRect updateRect) {
101 dest.top = updateRect.top + yoff
    [all...]
SDL_BWin.h 185 virtual void DrawAsync(BRect updateRect) {
186 SDL_View->DrawAsync(updateRect);
  /external/chromium_org/content/browser/browser_plugin/
test_browser_plugin_guest.h 47 // Waits until UpdateRect message is sent from the guest, meaning it is
67 // Waits until UpdateRect with a particular |view_size| is observed.
test_browser_plugin_guest.cc 83 // Check if we already got any UpdateRect message.
  /external/chromium_org/third_party/WebKit/Source/core/platform/
HostWindow.h 49 virtual void invalidateContentsAndRootView(const IntRect& updateRect) = 0;
55 virtual void invalidateContentsForSlowScroll(const IntRect& updateRect) = 0;
ScrollView.cpp 561 IntRect updateRect = clipRect;
562 updateRect.intersect(scrollViewRect);
577 scrollContentsSlowPath(updateRect);
581 scrollContentsSlowPath(updateRect);
597 void ScrollView::scrollContentsSlowPath(const IntRect& updateRect)
599 hostWindow()->invalidateContentsForSlowScroll(updateRect);
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/
framed_browser_window.mm 196 NSRect updateRect = [frameView frame];
199 updateRect.size.height -= NSHeight(contentRect) - tabStripHeight;
200 updateRect.origin.y = NSMaxY(contentRect) - tabStripHeight;
201 [[self frameView] setNeedsDisplayInRect:updateRect];
  /external/chromium_org/content/renderer/browser_plugin/
browser_plugin_backing_store.h 32 // BrowserPluginMsg_UpdateRect. See BrowserPlugin::UpdateRect.
browser_plugin_browsertest.cc 181 // for a BrowserPluginMsg_UpdateRect in response. We issue an UpdateRect, and
194 // Now the browser plugin is expecting a UpdateRect resize.
198 // Send the BrowserPlugin an UpdateRect equal to its container size with
294 // Send an UpdateRect to the BrowserPlugin to make it use the pending damage
297 // We send a stale UpdateRect to the BrowserPlugin.
304 // UpdateRect, then the BrowserPlugin knows that the browser process has
343 // request but has not yet received an UpdateRect for that request.
347 // We send a stale UpdateRect to the BrowserPlugin.
358 // UpdateRect with the most recent size.
361 // Send the BrowserPlugin another UpdateRect, but this time with a siz
    [all...]
  /external/chromium_org/content/browser/renderer_host/
render_widget_helper.h 51 // the RenderWidget generates a new BackingStore and sends an UpdateRect
53 // compositing), and it sets the IS_RESIZE_ACK flag in the UpdateRect message
54 // to true. In the accelerated case, an UpdateRect is still sent from the
58 // software UpdateRect or GPU BuffersSwapped message.
61 // sees an UpdateRect message (or when the GpuProcessHost sees a
  /external/qemu/distrib/sdl-1.2.15/src/video/photon/
SDL_ph_video.c 597 SDL_Rect updaterect; local
599 updaterect.x = updaterect.y = 0;
600 updaterect.w = this->screen->w;
601 updaterect.h = this->screen->h;
615 this->UpdateRects(this, 1, &updaterect);
632 this->UpdateRects(this, 1, &updaterect);
  /external/chromium_org/third_party/WebKit/Source/core/page/
Chrome.cpp 68 void Chrome::invalidateContentsAndRootView(const IntRect& updateRect)
70 m_client->invalidateContentsAndRootView(updateRect);
73 void Chrome::invalidateContentsForSlowScroll(const IntRect& updateRect)
75 m_client->invalidateContentsForSlowScroll(updateRect);
FrameView.cpp     [all...]
  /frameworks/base/cmds/bootanimation/
BootAnimation.cpp 335 const Rect updateRect(xc, yc, xc + mAndroid[0].w, yc + mAndroid[0].h);
337 glScissor(updateRect.left, mHeight - updateRect.bottom, updateRect.width(),
338 updateRect.height());
  /external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
dsa_new.cpp 956 TRect updateRect = aUpdateRect;
964 Rotate(updateRect);
967 if(iSourceMode != DisplayMode() || targetRect != sourceRect || targetRect != updateRect || ((iStateFlags & EOrientationFlags) != 0))
970 //updateRect.Intersection(targetRect);
971 ClipCopy(target, aBits, updateRect, sourceRect);
1007 TRect updateRect = aUpdateRect;
1012 Rotate(updateRect);
1015 if(iSourceMode != DisplayMode() || targetRect != sourceRect || targetRect != updateRect || ((iStateFlags & EOrientationFlags) != 0))
1018 updateRect.Intersection(targetRect);
1019 ClipCopy(target, aBits, updateRect, sourceRect.iTl)
    [all...]
dsa_old.cpp 636 TRect updateRect = aUpdateRect;
641 Rotate(updateRect);
644 if(iSourceMode != DisplayMode() || targetRect != sourceRect || targetRect != updateRect || ((iStateFlags & EOrientationFlags) != 0))
647 updateRect.Intersection(targetRect);
648 ClipCopy(target, aBits, updateRect, sourceRect);
dsa.cpp 1071 TRect updateRect = aUpdateRect;
1079 Rotate(updateRect);
1082 if(iSourceMode != DisplayMode() || targetRect != sourceRect || targetRect != updateRect || ((iStateFlags & EOrientationFlags) != 0))
1085 //updateRect.Intersection(targetRect);
1086 ClipCopy(target, aBits, updateRect, sourceRect);
  /external/chromium_org/chrome/browser/ui/cocoa/
framed_browser_window.mm 217 NSRect updateRect = [frameView frame];
220 updateRect.size.height -= NSHeight(contentRect) - tabStripHeight;
221 updateRect.origin.y = NSMaxY(contentRect) - tabStripHeight;
222 [[self frameView] setNeedsDisplayInRect:updateRect];
  /external/chromium_org/content/renderer/
render_widget.h 570 // Filtered time per frame based on UpdateRect messages.
574 // UpdateRect message has been sent).
581 // True if we need to send an UpdateRect message to notify the browser about
697 // UpdateRect parameters for the current compositing pass. This is used to
701 // Queue of UpdateRect messages corresponding to a SwapBuffers. We want to
702 // delay sending of UpdateRect until the corresponding SwapBuffers has been
  /external/chromium_org/third_party/WebKit/Source/web/
ChromeClientImpl.cpp 482 void ChromeClientImpl::invalidateContentsAndRootView(const IntRect& updateRect)
484 if (updateRect.isEmpty())
486 m_webView->invalidateRect(updateRect);
489 void ChromeClientImpl::invalidateContentsForSlowScroll(const IntRect& updateRect)
491 invalidateContentsAndRootView(updateRect);
    [all...]
WebPagePopupImpl.cpp 109 virtual void invalidateContentsForSlowScroll(const IntRect& updateRect) OVERRIDE
111 invalidateContentsAndRootView(updateRect);
WebPopupMenuImpl.cpp 347 void WebPopupMenuImpl::invalidateContentsForSlowScroll(const IntRect& updateRect)
349 invalidateContentsAndRootView(updateRect);
  /external/chromium_org/content/public/browser/
render_process_host.h 73 // Called to wait for the next UpdateRect message for the specified render
75 // copy of the received UpdateRect message.
  /external/chromium_org/content/public/renderer/
render_view.h 114 // Filtered time per frame based on UpdateRect messages.
  /frameworks/native/include/ui/
FramebufferNativeWindow.h 57 status_t setUpdateRectangle(const Rect& updateRect);

Completed in 941 milliseconds

1 2