HomeSort by relevance Sort by last modified time
    Searched full:pixel_copy_rect (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/content/renderer/browser_plugin/
browser_plugin_backing_store.cc 61 const gfx::Rect& pixel_copy_rect = gfx::ToEnclosingRect( local
63 int x = pixel_copy_rect.x() - pixel_bitmap_rect.x();
64 int y = pixel_copy_rect.y() - pixel_bitmap_rect.y();
66 pixel_copy_rect.width(),
67 pixel_copy_rect.height());
70 SkIntToScalar(pixel_copy_rect.x()),
71 SkIntToScalar(pixel_copy_rect.y()),
72 SkIntToScalar(pixel_copy_rect.width()),
73 SkIntToScalar(pixel_copy_rect.height()));
  /external/chromium_org/content/browser/renderer_host/
backing_store_win.cc 140 gfx::Rect pixel_copy_rect = gfx::ToEnclosingRect( local
142 gfx::Rect target_rect = pixel_copy_rect;
148 pixel_copy_rect.x() - pixel_bitmap_rect.x(),
149 pixel_copy_rect.y() - pixel_bitmap_rect.y(),
150 pixel_copy_rect.width(),
151 pixel_copy_rect.height(),
backing_store_aura.cc 124 const gfx::Rect pixel_copy_rect = gfx::ToEnclosingRect( local
126 int x = pixel_copy_rect.x() - pixel_bitmap_rect.x();
127 int y = pixel_copy_rect.y() - pixel_bitmap_rect.y();
129 pixel_copy_rect.width(),
130 pixel_copy_rect.height());
backing_store_mac.mm 120 gfx::Rect pixel_copy_rect = ToFlooredRectDeprecated(
126 CGRectMake(pixel_copy_rect.x() - pixel_bitmap_rect.x(),
127 pixel_copy_rect.y() - pixel_bitmap_rect.y(),
128 pixel_copy_rect.width(),
129 pixel_copy_rect.height())));
backing_store_gtk.cc 420 gfx::Rect pixel_copy_rect = gfx::ToEnclosedRect( local
423 pixel_copy_rect.x() - pixel_bitmap_rect.x(), /* source x */
424 pixel_copy_rect.y() - pixel_bitmap_rect.y(), /* source y */
425 pixel_copy_rect.x() - pixel_bitmap_rect.x(), /* dest x */
426 pixel_copy_rect.y() - pixel_bitmap_rect.y(), /* dest y */
427 pixel_copy_rect.width(), pixel_copy_rect.height(),

Completed in 527 milliseconds