Searched refs:invalid_rect (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/ui/views/win/
H A Dhwnd_message_handler_delegate.h196 // Called to compel the delegate to paint |invalid_rect| accelerated. Returns
198 virtual bool HandlePaintAccelerated(const gfx::Rect& invalid_rect) = 0;
/external/chromium_org/content/child/npapi/
H A Dwebplugin_delegate_impl_win.cc938 gfx::Rect invalid_rect; local
939 invalid_rect.set_x(static_cast<short>(LOWORD(wparam)));
940 invalid_rect.set_y(static_cast<short>(HIWORD(wparam)));
941 invalid_rect.set_width(static_cast<short>(LOWORD(lparam)));
942 invalid_rect.set_height(static_cast<short>(HIWORD(lparam)));
946 invalid_rect.Offset(-window_rect.left, -window_rect.top);
960 RECT rect = invalid_rect.ToRECT();
/external/chromium_org/ui/compositor/
H A Dlayer.cc626 bool Layer::SchedulePaint(const gfx::Rect& invalid_rect) { argument
632 damaged_region_.op(invalid_rect.x(),
633 invalid_rect.y(),
634 invalid_rect.right(),
635 invalid_rect.bottom(),
H A Dlayer.h296 // Adds |invalid_rect| to the Layer's pending invalid rect and calls
298 bool SchedulePaint(const gfx::Rect& invalid_rect);
/external/chromium_org/cc/resources/
H A Dpicture_pile.cc404 gfx::Rect invalid_rect = i.rect(); local
408 // the iteration of the |invalid_rect| below which includes borders when
411 tiling_.ExpandRectToTileBounds(invalid_rect);
426 for (TilingData::Iterator iter(&tiling_, invalid_rect, include_borders);
/external/chromium_org/ui/views/widget/
H A Droot_view.cc343 gfx::Rect invalid_rect = gfx::IntersectRects(GetLocalBounds(), xrect); local
344 if (!invalid_rect.IsEmpty())
345 widget_->SchedulePaintInRect(invalid_rect);
/external/chromium_org/ui/views/widget/desktop_aura/
H A Ddesktop_window_tree_host_win.h191 virtual bool HandlePaintAccelerated(const gfx::Rect& invalid_rect) OVERRIDE;
H A Ddesktop_window_tree_host_win.cc903 const gfx::Rect& invalid_rect) {
904 return native_widget_delegate_->OnNativeWidgetPaintAccelerated(invalid_rect);
902 HandlePaintAccelerated( const gfx::Rect& invalid_rect) argument

Completed in 1726 milliseconds