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 46 // Waits until UpdateRect message is sent from the guest, meaning it is
66 // Waits until UpdateRect with a particular |view_size| is observed.
test_browser_plugin_guest.cc 61 // Check if we already got any UpdateRect message.
  /external/chromium_org/third_party/WebKit/Source/platform/
HostWindow.h 50 virtual void invalidateContentsAndRootView(const IntRect& updateRect) = 0;
56 virtual void invalidateContentsForSlowScroll(const IntRect& updateRect) = 0;
  /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 187 // for a BrowserPluginMsg_UpdateRect in response. We issue an UpdateRect, and
200 // Now the browser plugin is expecting a UpdateRect resize.
204 // Send the BrowserPlugin an UpdateRect equal to its container size with
300 // Send an UpdateRect to the BrowserPlugin to make it use the pending damage
303 // We send a stale UpdateRect to the BrowserPlugin.
310 // UpdateRect, then the BrowserPlugin knows that the browser process has
349 // request but has not yet received an UpdateRect for that request.
353 // We send a stale UpdateRect to the BrowserPlugin.
364 // UpdateRect with the most recent size.
367 // 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);
  /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 218 NSRect updateRect = [frameView frame];
221 updateRect.size.height -= NSHeight(contentRect) - tabStripHeight;
222 updateRect.origin.y = NSMaxY(contentRect) - tabStripHeight;
223 [[self frameView] setNeedsDisplayInRect:updateRect];
  /external/chromium_org/third_party/WebKit/Source/core/frame/
FrameView.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
ChromeClientImpl.cpp 484 void ChromeClientImpl::invalidateContentsAndRootView(const IntRect& updateRect)
486 if (updateRect.isEmpty())
488 m_webView->invalidateRect(updateRect);
491 void ChromeClientImpl::invalidateContentsForSlowScroll(const IntRect& updateRect)
493 invalidateContentsAndRootView(updateRect);
    [all...]
WebPagePopupImpl.cpp 105 virtual void invalidateContentsForSlowScroll(const IntRect& updateRect) OVERRIDE
107 invalidateContentsAndRootView(updateRect);
WebPopupMenuImpl.cpp 348 void WebPopupMenuImpl::invalidateContentsForSlowScroll(const IntRect& updateRect)
350 invalidateContentsAndRootView(updateRect);
  /external/chromium_org/content/renderer/
render_widget.h 600 // Filtered time per frame based on UpdateRect messages.
604 // UpdateRect message has been sent).
611 // True if we need to send an UpdateRect message to notify the browser about
739 // UpdateRect parameters for the current compositing pass. This is used to
743 // Queue of UpdateRect messages corresponding to a SwapBuffers. We want to
744 // delay sending of UpdateRect until the corresponding SwapBuffers has been
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollView.cpp 534 IntRect updateRect = clipRect;
535 updateRect.intersect(scrollViewRect);
550 scrollContentsSlowPath(updateRect);
554 scrollContentsSlowPath(updateRect);
570 void ScrollView::scrollContentsSlowPath(const IntRect& updateRect)
572 hostWindow()->invalidateContentsForSlowScroll(updateRect);
    [all...]
  /external/chromium_org/content/public/browser/
render_process_host.h 85 // Called to wait for the next UpdateRect message for the specified render
87 // copy of the received UpdateRect message.
  /external/chromium_org/content/public/renderer/
render_view.h 107 // Filtered time per frame based on UpdateRect messages.
  /frameworks/native/include/ui/
FramebufferNativeWindow.h 57 status_t setUpdateRectangle(const Rect& updateRect);

Completed in 400 milliseconds

1 2