HomeSort by relevance Sort by last modified time
    Searched defs:dest_rect (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/ui/gfx/
blit.cc 160 gfx::Rect dest_rect = gfx::IntersectRects(clip + offset, clip); local
161 if (dest_rect.size().IsEmpty())
164 // Compute the source pixels that will map to the dest_rect
165 gfx::Rect src_rect = dest_rect - offset;
167 size_t row_bytes = dest_rect.width() * 4;
170 for (int y = dest_rect.height() - 1; y >= 0; y--) {
171 memcpy(bitmap.getAddr32(dest_rect.x(), dest_rect.y() + y),
177 for (int y = 0; y < dest_rect.height(); y++) {
178 memcpy(bitmap.getAddr32(dest_rect.x(), dest_rect.y() + y)
    [all...]
canvas.cc 350 SkRect dest_rect = { SkIntToScalar(dest_x),
362 canvas_->drawBitmapRect(bitmap, &src_rect, dest_rect, &paint);
388 canvas_->drawRect(dest_rect, p);
479 SkRect dest_rect = { SkIntToScalar(dest_x), local
483 canvas_->drawRect(dest_rect, paint);
  /external/chromium_org/remoting/base/
util_unittest.cc 153 SkIRect dest_rect = rect; local
155 dest_rect.fLeft += 1;
157 dest_rect.fTop += 1;
159 dest_rect.fRight += 1;
161 dest_rect.fBottom += 1;
163 tester.RunTest(dest_size, dest_rect);
173 SkIRect dest_rect = rect; local
175 dest_rect.fLeft += 1;
177 dest_rect.fTop += 1;
179 dest_rect.fRight += 1
    [all...]
  /external/chromium/chrome/browser/tab_contents/
thumbnail_generator.cc 393 const SkRect dest_rect = { 0, 0, local
396 const float dest_aspect = dest_rect.width() / dest_rect.height();
401 if (bitmap.width() < dest_rect.width() ||
402 bitmap.height() < dest_rect.height()) {
406 src_rect.set(0, 0, static_cast<S16CPU>(dest_rect.width()),
407 static_cast<S16CPU>(dest_rect.height()));
  /external/qemu/distrib/sdl-1.2.15/src/video/photon/
SDL_ph_image.c 1011 PhArea_t dest_rect; local
1034 dest_rect.pos.x=rects[i].x;
1035 dest_rect.pos.y=rects[i].y;
1039 dest_rect.size.w=rects[i].w;
1040 dest_rect.size.h=rects[i].h;
1042 PgContextBlitArea(OCImage.offscreen_context, &src_rect, NULL, &dest_rect);
  /external/chromium_org/cc/output/
software_renderer.cc 407 SkRect dest_rect = gfx::RectFToSkRect(QuadVertexRect()); local
411 content_mat.setRectToRect(content_rect, dest_rect,
439 mask_mat.setRectToRect(mask_rect, dest_rect, SkMatrix::kFill_ScaleToFit);
455 current_canvas_->drawRect(dest_rect, current_paint_);
458 current_canvas_->drawRect(dest_rect, current_paint_);
  /external/chromium_org/content/renderer/pepper/
pepper_graphics_2d_host.cc 100 PPB_ImageData_Impl* dest_image, const SkRect& dest_rect) {
110 dest_rect.width() == dest_image->width()) {
116 dest_bitmap->getAddr32(static_cast<int>(dest_rect.fLeft),
117 static_cast<int>(dest_rect.fTop)));
125 dest_bitmap->getAddr32(static_cast<int>(dest_rect.fLeft),
126 static_cast<int>(dest_rect.fTop + y)));
275 SkRect dest_rect = { SkIntToScalar(0), local
282 ConvertImageData(image_data_.get(), src_irect, image_resource, dest_rect);
290 &src_irect, dest_rect, &paint);
654 SkRect dest_rect = { SkIntToScalar(invalidated_rect->x()) local
690 SkRect dest_rect = { SkIntToScalar(0), local
    [all...]

Completed in 717 milliseconds