HomeSort by relevance Sort by last modified time
    Searched refs:source_rect (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/chromium_org/cc/resources/
resource_update.cc 14 const gfx::Rect& source_rect,
16 CHECK(content_rect.Contains(source_rect));
21 update.source_rect = source_rect;
bitmap_skpicture_content_layer_updater.cc 23 const gfx::Rect& source_rect,
29 source_rect.width(), source_rect.height(), kN32_SkColorType, at));
31 updater_->PaintContentsRect(&canvas, source_rect);
34 texture(), &bitmap_, source_rect, source_rect, dest_offset);
71 const gfx::Rect& source_rect) {
74 // Translate the origin of content_rect to that of source_rect.
75 canvas->translate(paint_rect().x() - source_rect.x(),
76 paint_rect().y() - source_rect.y())
    [all...]
resource_update.h 22 const gfx::Rect& source_rect,
31 gfx::Rect source_rect; member in struct:cc::ResourceUpdate
texture_uploader.cc 139 const gfx::Rect& source_rect,
143 CHECK(image_rect.Contains(source_rect));
145 bool is_full_upload = dest_offset.IsZero() && source_rect.size() == size;
156 image, image_rect, source_rect, dest_offset, format);
183 const gfx::Rect& source_rect,
190 if (source_rect.IsEmpty())
195 gfx::Vector2d offset(source_rect.origin() - image_rect.origin());
202 RoundUp(bytes_per_pixel * source_rect.width(), 4u);
208 size_t needed_size = upload_image_stride * source_rect.height();
215 for (int row = 0; row < source_rect.height(); ++row
    [all...]
image_layer_updater.cc 18 const gfx::Rect& source_rect,
22 queue, texture(), source_rect, dest_offset, partial_update);
38 const gfx::Rect& source_rect,
43 gfx::Rect clipped_source_rect = source_rect;
49 gfx::Vector2d(clipped_source_rect.origin() - source_rect.origin());
bitmap_skpicture_content_layer_updater.h 24 const gfx::Rect& source_rect,
43 const gfx::Rect& source_rect);
image_layer_updater.h 25 const gfx::Rect& source_rect,
42 const gfx::Rect& source_rect,
texture_uploader.h 44 // corresponding to source_rect to dest_offset in this sub-image.
47 const gfx::Rect& source_rect,
92 const gfx::Rect& source_rect,
97 const gfx::Rect& source_rect,
bitmap_content_layer_updater.cc 26 const gfx::Rect& source_rect,
30 queue, texture(), source_rect, dest_offset, partial_update);
89 const gfx::Rect& source_rect,
94 texture, &bitmap_backing_, paint_rect(), source_rect, dest_offset);
bitmap_content_layer_updater.h 33 const gfx::Rect& source_rect,
57 const gfx::Rect& source_rect,
layer_updater.h 33 const gfx::Rect& source_rect,
prioritized_resource.cc 81 const gfx::Rect& source_rect,
88 resource_id(), image, image_rect, source_rect, dest_offset); local
  /external/chromium_org/ui/snapshot/
snapshot_aura.cc 35 const gfx::Rect& source_rect,
39 request->set_area(source_rect);
45 const gfx::Rect& source_rect,
50 source_rect,
59 const gfx::Rect& source_rect,
63 source_rect,
71 const gfx::Rect& source_rect,
74 GrabWindowSnapshotAsync(view, source_rect, background_task_runner, callback);
snapshot_android.cc 37 const gfx::Rect& source_rect,
46 gfx::ToEnclosingRect(gfx::ScaleRect(source_rect, device_scale_factor));
61 const gfx::Rect& source_rect,
66 source_rect,
75 const gfx::Rect& source_rect,
79 source_rect,
87 const gfx::Rect& source_rect,
91 view->GetWindowAndroid(), source_rect, background_task_runner, callback);
snapshot.h 45 // These functions take a snapshot of |source_rect|, specified in layer space
52 const gfx::Rect& source_rect,
61 const gfx::Rect& source_rect,
66 const gfx::Rect& source_rect,
snapshot_win.cc 134 const gfx::Rect& source_rect,
143 const gfx::Rect& source_rect,
  /external/chromium_org/ppapi/shared_impl/
compositor_layer_data.h 73 source_rect(PP_MakeFloatRectFromXYWH(0.0f, 0.0f, 0.0f, 0.0f)) {}
76 PP_FloatRect source_rect; member in struct:ppapi::CompositorLayerData::ImageLayer
83 source_rect(PP_MakeFloatRectFromXYWH(0.0f, 0.0f, 1.0f, 1.0f)),
89 PP_FloatRect source_rect; member in struct:ppapi::CompositorLayerData::TextureLayer
  /external/chromium_org/remoting/codec/
video_decoder_vpx.cc 226 webrtc::DesktopRect source_rect = local
228 source_rect = webrtc::DesktopRect::MakeLTRB(
229 RoundToTwosMultiple(source_rect.left()),
230 RoundToTwosMultiple(source_rect.top()),
231 source_rect.right(),
232 source_rect.bottom());
236 webrtc::DesktopRegion intersection(source_rect);
242 int y_offset = CalculateYOffset(source_rect.left(), source_rect.top(),
244 int uv_offset = CalculateUVOffset(source_rect.left(), source_rect.top()
    [all...]
  /external/chromium_org/printing/
pdf_metafile_cg_mac.cc 184 CGRect source_rect = CGPDFPageGetBoxRect(pdf_page, kCGPDFCropBox); local
187 (source_rect.size.width > source_rect.size.height);
192 rotate ? source_rect.size.height : source_rect.size.width;
194 rotate ? source_rect.size.width : source_rect.size.height;
209 const float x_origin_offset = -1 * source_rect.origin.x;
210 const float y_origin_offset = -1 * source_rect.origin.y;
  /external/chromium_org/ppapi/proxy/
compositor_layer_resource.cc 169 // Set the source size to (1, 1). It will be used to verify the source_rect
177 data_.texture->source_rect.point = PP_MakeFloatPoint(0.0f, 0.0f);
178 data_.texture->source_rect.size = source_size_;
224 // the source_rect passed to SetSourceRect().
230 data_.image->source_rect.point = PP_MakeFloatPoint(0.0f, 0.0f);
231 data_.image->source_rect.size = source_size_;
313 data_.texture->source_rect = *rect;
317 data_.image->source_rect = *rect;
  /hardware/qcom/display/msm8084/libcopybit/
c2dExt.h 44 C2D_LENSCORRECT_SOURCE_RECT = (1 << 3), /*!< enables source_rect field. When set, client has to provide C2D_LENSCORRECT_OBJECT.source_rect
58 C2D_RECT source_rect; /*!< region of the source surface, 16.16 fp */ member in struct:C2D_LENSCORRECT_OBJ_STR
  /external/chromium_org/content/renderer/
child_frame_compositing_helper.h 63 gfx::Rect source_rect,
  /external/chromium_org/cc/layers/
tiled_layer.cc 497 // source_rect starts as a full-sized tile with border texels included.
498 gfx::Rect source_rect = tiler_->TileRect(tile); local
499 source_rect.Intersect(dirty_rect);
501 // make sure that source_rect doesn't extend outside of it.
502 source_rect.Intersect(paint_rect);
504 tile->update_rect = source_rect;
506 if (source_rect.IsEmpty())
512 gfx::Vector2d dest_offset = source_rect.origin() - anchor;
517 gfx::Vector2d paint_offset = source_rect.origin() - paint_rect.origin();
520 CHECK_LE(paint_offset.x() + source_rect.width(), paint_rect.width())
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vdpau/
output.c 186 VdpRect const *source_rect,
209 box = RectToPipeBox(source_rect, res);
626 VdpRect const *source_rect,
666 RectToPipe(source_rect, &src_rect), NULL,
685 VdpRect const *source_rect,
725 RectToPipe(source_rect, &src_rect), NULL,
  /external/mesa3d/src/gallium/state_trackers/vdpau/
output.c 186 VdpRect const *source_rect,
209 box = RectToPipeBox(source_rect, res);
626 VdpRect const *source_rect,
666 RectToPipe(source_rect, &src_rect), NULL,
685 VdpRect const *source_rect,
725 RectToPipe(source_rect, &src_rect), NULL,

Completed in 461 milliseconds

1 2 3