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

1 2

  /external/chromium_org/cc/resources/
bitmap_skpicture_content_layer_updater.cc 24 gfx::Rect source_rect,
28 SkBitmap::kARGB_8888_Config, source_rect.width(), source_rect.height());
33 updater_->PaintContentsRect(&canvas, source_rect);
36 texture(), &bitmap_, source_rect, source_rect, dest_offset);
73 gfx::Rect source_rect) {
74 // Translate the origin of content_rect to that of source_rect.
75 canvas->translate(content_rect().x() - source_rect.x(),
76 content_rect().y() - source_rect.y())
    [all...]
resource_update.cc 16 gfx::Rect source_rect,
18 CHECK(content_rect.Contains(source_rect));
23 update.source_rect = source_rect;
32 gfx::Rect source_rect,
34 CHECK(content_rect.Contains(source_rect));
40 update.source_rect = source_rect;
resource_update.h 25 gfx::Rect source_rect,
30 gfx::Rect source_rect,
40 gfx::Rect source_rect; member in struct:cc::ResourceUpdate
image_layer_updater.cc 18 gfx::Rect source_rect,
22 queue, texture(), source_rect, dest_offset, partial_update);
38 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 gfx::Rect source_rect,
43 gfx::Rect source_rect);
image_layer_updater.h 25 gfx::Rect source_rect,
42 gfx::Rect source_rect,
bitmap_content_layer_updater.cc 25 gfx::Rect source_rect,
29 queue, texture(), source_rect, dest_offset, partial_update);
89 gfx::Rect source_rect,
97 source_rect,
bitmap_content_layer_updater.h 31 gfx::Rect source_rect,
55 gfx::Rect source_rect,
layer_updater.h 32 gfx::Rect source_rect,
prioritized_resource.cc 83 gfx::Rect source_rect,
90 resource_id(), image, image_rect, source_rect, dest_offset); local
prioritized_resource.h 81 gfx::Rect source_rect,
resource_update_controller.cc 96 update.source_rect,
video_resource_updater.cc 292 gfx::Rect source_rect(plane_resources[i].resource_size);
296 source_rect,
  /external/chromium_org/cc/scheduler/
texture_uploader.cc 136 gfx::Rect source_rect,
140 CHECK(image_rect.Contains(source_rect));
142 bool is_full_upload = dest_offset.IsZero() && source_rect.size() == size;
149 image, image_rect, source_rect, dest_offset, format);
151 UploadWithTexSubImage(image, image_rect, source_rect, dest_offset, format);
179 gfx::Rect source_rect,
183 int source_rect_x = source_rect.x();
184 int source_rect_y = source_rect.y();
185 int source_rect_width = source_rect.width();
186 int source_rect_height = source_rect.height()
    [all...]
texture_uploader.h 44 // corresponding to source_rect to dest_offset in this sub-image.
47 gfx::Rect source_rect,
98 gfx::Rect source_rect,
103 gfx::Rect source_rect,
  /external/chromium_org/remoting/codec/
video_decoder_vp8.cc 182 SkIRect source_rect = ScaleRect(clip_area, view_size, screen_size_); local
183 source_rect = SkIRect::MakeLTRB(RoundToTwosMultiple(source_rect.left()),
184 RoundToTwosMultiple(source_rect.top()),
185 source_rect.right(),
186 source_rect.bottom());
189 if (!updated_region_.intersects(source_rect))
193 int y_offset = CalculateYOffset(source_rect.x(),
194 source_rect.y(),
196 int uv_offset = CalculateUVOffset(source_rect.x()
    [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/cc/layers/
tiled_layer.cc 537 // source_rect starts as a full-sized tile with border texels included.
538 gfx::Rect source_rect = tiler_->TileRect(tile); local
539 source_rect.Intersect(dirty_rect);
541 // make sure that source_rect doesn't extend outside of it.
542 source_rect.Intersect(paint_rect);
544 tile->update_rect = source_rect;
546 if (source_rect.IsEmpty())
552 gfx::Vector2d dest_offset = source_rect.origin() - anchor;
557 gfx::Vector2d paint_offset = source_rect.origin() - paint_rect.origin();
560 CHECK_LE(paint_offset.x() + source_rect.width(), paint_rect.width())
567 DidUpload(gfx::Transform(), source_rect, tile->opaque_rect()); local
    [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,
  /external/chromium_org/cc/test/
tiled_layer_test_common.h 32 gfx::Rect source_rect,
tiled_layer_test_common.cc 19 gfx::Rect source_rect,
  /hardware/qcom/display/msm8960/libcopybit/
c2d2.h 215 C2D_SOURCE_RECT_BIT = (1 << 0), /* enables source_rect field */
223 C2D_MASK_ALIGN_BIT = (1 << 8), /* aligns mask to source_rect */
354 * The source_rect first defines the content of the source surface,
375 C2D_RECT source_rect; /* region of the source surface, 16.16 fp */ member in struct:C2D_OBJECT_STR
    [all...]
  /hardware/qcom/display/msm8974/libcopybit/
c2d2.h 215 C2D_SOURCE_RECT_BIT = (1 << 0), /* enables source_rect field */
223 C2D_MASK_ALIGN_BIT = (1 << 8), /* aligns mask to source_rect */
354 * The source_rect first defines the content of the source surface,
375 C2D_RECT source_rect; /* region of the source surface, 16.16 fp */ member in struct:C2D_OBJECT_STR
    [all...]
  /hardware/qcom/display/msm8x26/libcopybit/
c2d2.h 215 C2D_SOURCE_RECT_BIT = (1 << 0), /* enables source_rect field */
223 C2D_MASK_ALIGN_BIT = (1 << 8), /* aligns mask to source_rect */
354 * The source_rect first defines the content of the source surface,
375 C2D_RECT source_rect; /* region of the source surface, 16.16 fp */ member in struct:C2D_OBJECT_STR
    [all...]

Completed in 337 milliseconds

1 2