Home
last modified time | relevance | path

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

/external/chromium_org/ppapi/examples/2d/
Dpaint_manager_example.cc83 const pp::Rect& paint_bounds) { in OnPaint() argument
89 paint_bounds.size(), false); in OnPaint()
105 paint_rects[i].x() - paint_bounds.x(), in OnPaint()
106 paint_rects[i].y() - paint_bounds.y(), in OnPaint()
116 square.x() - paint_bounds.x(), in OnPaint()
117 square.y() - paint_bounds.y(), in OnPaint()
122 graphics_2d.PaintImageData(updated_image, paint_bounds.point()); in OnPaint()
Dscroll.cc68 const pp::Rect& paint_bounds) { in OnPaint() argument
77 paint_bounds.size(), false); in OnPaint()
89 int x = xs * kSquareSpacing + x_offset - paint_bounds.x(); in OnPaint()
90 int y = ys * kSquareSpacing + y_offset - paint_bounds.y(); in OnPaint()
95 graphics.PaintImageData(updated_image, paint_bounds.point()); in OnPaint()
/external/chromium_org/ppapi/examples/input/
Dpointer_event_input.cc101 const pp::Rect& paint_bounds) { in OnPaint() argument
107 paint_bounds.size(), false); in OnPaint()
123 paint_rects[i].x() - paint_bounds.x(), in OnPaint()
124 paint_rects[i].y() - paint_bounds.y(), in OnPaint()
134 square.x() - paint_bounds.x(), in OnPaint()
135 square.y() - paint_bounds.y(), in OnPaint()
140 graphics_2d.PaintImageData(updated_image, paint_bounds.point()); in OnPaint()
/external/chromium_org/tools/perf/page_sets/tough_pepper_cases/extra_data/
Dtouch_drawing_plugin.cc100 const pp::Rect& paint_bounds) { in OnPaint() argument
102 paint_bounds.size(), false); in OnPaint()
115 graphics_2d.PaintImageData(updated_image, paint_bounds.point()); in OnPaint()
/external/chromium_org/ppapi/utility/graphics/
Dpaint_aggregator.cc104 ret.paint_bounds = update_.GetPaintBounds(); in GetPendingUpdate()
110 ret.paint_bounds = ret.paint_bounds.Union(scroll_damage); in GetPendingUpdate()
Dpaint_aggregator.h62 Rect paint_bounds; member
Dpaint_manager.h100 const Rect& paint_bounds) = 0;
Dpaint_manager.cc153 if (client_->OnPaint(graphics_, update.paint_rects, update.paint_bounds)) { in DoPaint()
/external/chromium_org/ash/shelf/
Dshelf_button.cc436 gfx::Rect paint_bounds(GetLocalBounds()); in OnPaint() local
437 paint_bounds.Inset(1, 1, 1, 1); in OnPaint()
438 canvas->DrawSolidFocusRect(paint_bounds, kFocusBorderColor); in OnPaint()
/external/chromium_org/ppapi/tests/
Dtest_paint_aggregator.cc76 ASSERT_TRUE(expected_bounds == greg.GetPendingUpdate().paint_bounds); in TestDoubleDisjointInvalidation()
95 ASSERT_TRUE(expected_bounds == greg.GetPendingUpdate().paint_bounds); in TestSingleScroll()