HomeSort by relevance Sort by last modified time
    Searched full:content_rect (Results 1 - 25 of 94) sorted by null

1 2 3 4

  /external/chromium_org/cc/trees/
occlusion.cc 23 bool Occlusion::IsOccluded(const gfx::Rect& content_rect) const {
24 if (content_rect.IsEmpty())
33 GetUnoccludedRectInTargetSurface(content_rect);
38 const gfx::Rect& content_rect) const {
39 if (content_rect.IsEmpty())
40 return content_rect;
44 return content_rect;
48 GetUnoccludedRectInTargetSurface(content_rect);
58 unoccluded_rect.Intersect(content_rect);
64 const gfx::Rect& content_rect) const
    [all...]
occlusion.h 23 bool IsOccluded(const gfx::Rect& content_rect) const;
24 gfx::Rect GetUnoccludedContentRect(const gfx::Rect& content_rect) const;
28 const gfx::Rect& content_rect) const;
  /external/chromium_org/cc/resources/
resource_update.cc 13 const gfx::Rect& content_rect,
16 CHECK(content_rect.Contains(source_rect));
20 update.content_rect = content_rect;
texture_uploader.h 41 // Let content_rect be a rectangle, and let content_rect be a sub-rectangle of
42 // content_rect, expressed in the same coordinate system as content_rect. Let
43 // image be a buffer for content_rect. This function will copy the region
46 const gfx::Rect& content_rect,
resource_update.h 21 const gfx::Rect& content_rect,
30 gfx::Rect content_rect; member in struct:cc::ResourceUpdate
layer_painter.h 22 virtual void Paint(SkCanvas* canvas, const gfx::Rect& content_rect) = 0;
layer_tiling_data.cc 72 void LayerTilingData::ContentRectToTileIndices(const gfx::Rect& content_rect,
81 DCHECK(!content_rect.IsEmpty());
83 *left = tiling_data_.TileXIndexFromSrcCoord(content_rect.x());
84 *top = tiling_data_.TileYIndexFromSrcCoord(content_rect.y());
85 *right = tiling_data_.TileXIndexFromSrcCoord(content_rect.right() - 1);
86 *bottom = tiling_data_.TileYIndexFromSrcCoord(content_rect.bottom() - 1);
picture_pile_impl_perftest.cc 34 gfx::Rect content_rect(0, 0, kTileSize, kTileSize);
39 pile->AnalyzeInRect(content_rect, contents_scale, &analysis);
51 gfx::Rect content_rect(0, 0, kTileSize, kTileSize);
61 content_rect,
tile.cc 22 const gfx::Rect& content_rect,
30 content_rect_(content_rect),
70 res->BeginArray("content_rect");
picture_layer_tiling_set_unittest.cc 36 gfx::Rect content_rect(content_bounds);
38 Region remaining(content_rect);
42 content_rect,
46 EXPECT_TRUE(content_rect.Contains(geometry_rect));
231 gfx::Rect content_rect(content_bounds);
233 Region remaining(content_rect);
237 content_rect,
241 EXPECT_TRUE(content_rect.Contains(geometry_rect));
377 EXPECT_TRUE(tile->content_rect().Intersects(tiling->live_tiles_rect()))
379 << " Tile rect: " << tile->content_rect().ToString(
512 gfx::Rect content_rect = gfx::ScaleToEnclosingRect(iter.rect(), 2.f); local
    [all...]
picture_pile_impl.h 69 void AnalyzeInRect(const gfx::Rect& content_rect,
74 const gfx::Rect& content_rect,
81 PixelRefIterator(const gfx::Rect& content_rect,
115 const gfx::Rect& content_rect,
skpicture_content_layer_updater.h 18 // This class records the content_rect into an SkPicture. Subclass provides
  /external/chromium_org/printing/
printed_page.cc 30 const gfx::Size& paper_size, gfx::Rect* content_rect) const {
31 *content_rect = page_content_rect();
34 content_rect->set_x(content_rect->x() + diff / 2);
38 content_rect->set_y(content_rect->y() + diff / 2);
  /external/chromium_org/cc/quads/
picture_draw_quad.cc 27 const gfx::Rect& content_rect,
39 this->content_rect = content_rect;
53 const gfx::Rect& content_rect,
66 this->content_rect = content_rect;
85 value->BeginArray("content_rect");
86 MathUtil::AddToTracedValue(content_rect, value);
picture_draw_quad.h 32 const gfx::Rect& content_rect,
44 const gfx::Rect& content_rect,
48 gfx::Rect content_rect; member in class:cc::PictureDrawQuad
  /external/chromium_org/cc/test/
fake_scrollbar.cc 60 const gfx::Rect& content_rect) {
72 // TRACK and the given content_rect for the THUMB
74 : RectToSkRect(content_rect);
  /external/chromium_org/cc/debug/
rasterize_and_record_benchmark_impl.cc 29 const gfx::Rect& content_rect,
33 content_rect_(content_rect),
99 const gfx::Rect& content_rect) OVERRIDE {
100 return base_client_->CreateTile(tiling, content_rect);
225 gfx::Rect content_rect = (*it)->content_rect(); local
230 content_rect,
249 int tile_size = content_rect.width() * content_rect.height();
  /external/chromium_org/ui/snapshot/
snapshot_win.cc 20 RECT content_rect = {0, 0, 0, 0}; local
22 ::GetWindowRect(window_handle, &content_rect);
28 content_rect = monitor_info.rcMonitor;
31 content_rect.right++; // Match what PrintWindow wants.
33 return gfx::Rect(content_rect.right - content_rect.left,
34 content_rect.bottom - content_rect.top);
  /external/chromium_org/cc/layers/
render_surface_unittest.cc 50 // Currently, the content_rect, clip_rect, and
99 gfx::Rect content_rect(0, 0, 50, 50);
106 render_surface->SetContentRect(content_rect);
130 EXPECT_RECT_EQ(content_rect,
165 gfx::Rect content_rect(0, 0, 50, 50);
170 render_surface->SetContentRect(content_rect);
180 EXPECT_RECT_EQ(content_rect, pass->output_rect);
render_surface.h 34 void SetContentRect(const gfx::Rect& content_rect) {
35 content_rect_ = content_rect;
37 gfx::Rect content_rect() const { return content_rect_; } function in class:cc::RenderSurface
painted_scrollbar_layer.cc 261 const gfx::Rect& content_rect,
263 DCHECK(!content_rect.size().IsEmpty());
267 skbitmap.allocN32Pixels(content_rect.width(), content_rect.height());
271 content_rect.width() / static_cast<float>(layer_rect.width());
273 content_rect.height() / static_cast<float>(layer_rect.height());
  /external/chromium_org/cc/blink/
scrollbar_impl.cc 69 const gfx::Rect& content_rect) {
71 painter_.paintThumb(canvas, content_rect);
76 painter_.paintScrollbarBackground(canvas, content_rect);
  /external/chromium_org/cc/input/
scrollbar.h 36 const gfx::Rect& content_rect) = 0;
  /sdk/emulator/opengl/host/libs/libOpenglRender/
NativeMacSubWindow.m 45 NSRect content_rect = [win contentRectForFrameRect:[win frame]];
46 int cocoa_y = (int)content_rect.size.height - (y + height);
  /external/chromium_org/chrome/renderer/printing/
print_web_view_helper_mac.mm 101 gfx::Rect* content_rect) {
112 if (content_rect)
113 *content_rect = content_area;

Completed in 303 milliseconds

1 2 3 4