Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(408)

Side by Side Diff: cc/quads/picture_draw_quad.cc

Issue 1380653003: Mac Overlays: Allow SolidColor and Tile quads to be candidates for overlays. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@AllOrNothing2
Patch Set: Plumb allow_overlay Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "cc/quads/picture_draw_quad.h" 5 #include "cc/quads/picture_draw_quad.h"
6 6
7 #include "base/trace_event/trace_event_argument.h" 7 #include "base/trace_event/trace_event_argument.h"
8 #include "base/values.h" 8 #include "base/values.h"
9 #include "cc/base/math_util.h" 9 #include "cc/base/math_util.h"
10 #include "cc/resources/platform_color.h" 10 #include "cc/resources/platform_color.h"
(...skipping 19 matching lines...) Expand all
30 scoped_refptr<RasterSource> raster_source) { 30 scoped_refptr<RasterSource> raster_source) {
31 ContentDrawQuadBase::SetNew( 31 ContentDrawQuadBase::SetNew(
32 shared_quad_state, 32 shared_quad_state,
33 DrawQuad::PICTURE_CONTENT, 33 DrawQuad::PICTURE_CONTENT,
34 rect, 34 rect,
35 opaque_rect, 35 opaque_rect,
36 visible_rect, 36 visible_rect,
37 tex_coord_rect, 37 tex_coord_rect,
38 texture_size, 38 texture_size,
39 !PlatformColor::SameComponentOrder(texture_format), 39 !PlatformColor::SameComponentOrder(texture_format),
40 nearest_neighbor); 40 nearest_neighbor,
41 false);
41 this->content_rect = content_rect; 42 this->content_rect = content_rect;
42 this->contents_scale = contents_scale; 43 this->contents_scale = contents_scale;
43 this->raster_source = raster_source; 44 this->raster_source = raster_source;
44 this->texture_format = texture_format; 45 this->texture_format = texture_format;
45 } 46 }
46 47
47 void PictureDrawQuad::SetAll(const SharedQuadState* shared_quad_state, 48 void PictureDrawQuad::SetAll(const SharedQuadState* shared_quad_state,
48 const gfx::Rect& rect, 49 const gfx::Rect& rect,
49 const gfx::Rect& opaque_rect, 50 const gfx::Rect& opaque_rect,
50 const gfx::Rect& visible_rect, 51 const gfx::Rect& visible_rect,
51 bool needs_blending, 52 bool needs_blending,
52 const gfx::RectF& tex_coord_rect, 53 const gfx::RectF& tex_coord_rect,
53 const gfx::Size& texture_size, 54 const gfx::Size& texture_size,
54 bool nearest_neighbor, 55 bool nearest_neighbor,
55 ResourceFormat texture_format, 56 ResourceFormat texture_format,
56 const gfx::Rect& content_rect, 57 const gfx::Rect& content_rect,
57 float contents_scale, 58 float contents_scale,
58 scoped_refptr<RasterSource> raster_source) { 59 scoped_refptr<RasterSource> raster_source) {
59 ContentDrawQuadBase::SetAll(shared_quad_state, 60 ContentDrawQuadBase::SetAll(shared_quad_state,
60 DrawQuad::PICTURE_CONTENT, 61 DrawQuad::PICTURE_CONTENT,
61 rect, 62 rect,
62 opaque_rect, 63 opaque_rect,
63 visible_rect, 64 visible_rect,
64 needs_blending, 65 needs_blending,
65 tex_coord_rect, 66 tex_coord_rect,
66 texture_size, 67 texture_size,
67 !PlatformColor::SameComponentOrder( 68 !PlatformColor::SameComponentOrder(
68 texture_format), 69 texture_format),
69 nearest_neighbor); 70 nearest_neighbor,
71 false);
70 this->content_rect = content_rect; 72 this->content_rect = content_rect;
71 this->contents_scale = contents_scale; 73 this->contents_scale = contents_scale;
72 this->raster_source = raster_source; 74 this->raster_source = raster_source;
73 this->texture_format = texture_format; 75 this->texture_format = texture_format;
74 } 76 }
75 77
76 const PictureDrawQuad* PictureDrawQuad::MaterialCast(const DrawQuad* quad) { 78 const PictureDrawQuad* PictureDrawQuad::MaterialCast(const DrawQuad* quad) {
77 DCHECK(quad->material == DrawQuad::PICTURE_CONTENT); 79 DCHECK(quad->material == DrawQuad::PICTURE_CONTENT);
78 return static_cast<const PictureDrawQuad*>(quad); 80 return static_cast<const PictureDrawQuad*>(quad);
79 } 81 }
80 82
81 void PictureDrawQuad::ExtendValue(base::trace_event::TracedValue* value) const { 83 void PictureDrawQuad::ExtendValue(base::trace_event::TracedValue* value) const {
82 ContentDrawQuadBase::ExtendValue(value); 84 ContentDrawQuadBase::ExtendValue(value);
83 MathUtil::AddToTracedValue("content_rect", content_rect, value); 85 MathUtil::AddToTracedValue("content_rect", content_rect, value);
84 value->SetDouble("contents_scale", contents_scale); 86 value->SetDouble("contents_scale", contents_scale);
85 value->SetInteger("texture_format", texture_format); 87 value->SetInteger("texture_format", texture_format);
86 // TODO(piman): raster_source? 88 // TODO(piman): raster_source?
87 } 89 }
88 90
89 } // namespace cc 91 } // namespace cc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698