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
3 // found in the LICENSE file.
5 #include "cc/quads/picture_draw_quad.h"
7 #include "base/trace_event/trace_event_argument.h"
8 #include "base/values.h"
9 #include "cc/base/math_util.h"
10 #include "cc/resources/platform_color.h"
14 PictureDrawQuad::PictureDrawQuad() {
17 PictureDrawQuad::~PictureDrawQuad() {
20 void PictureDrawQuad::SetNew(const SharedQuadState
* shared_quad_state
,
21 const gfx::Rect
& rect
,
22 const gfx::Rect
& opaque_rect
,
23 const gfx::Rect
& visible_rect
,
24 const gfx::RectF
& tex_coord_rect
,
25 const gfx::Size
& texture_size
,
26 bool nearest_neighbor
,
27 ResourceFormat texture_format
,
28 const gfx::Rect
& content_rect
,
30 scoped_refptr
<RasterSource
> raster_source
) {
31 ContentDrawQuadBase::SetNew(
33 DrawQuad::PICTURE_CONTENT
,
39 !PlatformColor::SameComponentOrder(texture_format
),
41 this->content_rect
= content_rect
;
42 this->contents_scale
= contents_scale
;
43 this->raster_source
= raster_source
;
44 this->texture_format
= texture_format
;
47 void PictureDrawQuad::SetAll(const SharedQuadState
* shared_quad_state
,
48 const gfx::Rect
& rect
,
49 const gfx::Rect
& opaque_rect
,
50 const gfx::Rect
& visible_rect
,
52 const gfx::RectF
& tex_coord_rect
,
53 const gfx::Size
& texture_size
,
54 bool nearest_neighbor
,
55 ResourceFormat texture_format
,
56 const gfx::Rect
& content_rect
,
58 scoped_refptr
<RasterSource
> raster_source
) {
59 ContentDrawQuadBase::SetAll(shared_quad_state
,
60 DrawQuad::PICTURE_CONTENT
,
67 !PlatformColor::SameComponentOrder(
70 this->content_rect
= content_rect
;
71 this->contents_scale
= contents_scale
;
72 this->raster_source
= raster_source
;
73 this->texture_format
= texture_format
;
76 void PictureDrawQuad::IterateResources(
77 const ResourceIteratorCallback
& callback
) {
78 // TODO(danakj): Convert to TextureDrawQuad?
82 const PictureDrawQuad
* PictureDrawQuad::MaterialCast(const DrawQuad
* quad
) {
83 DCHECK(quad
->material
== DrawQuad::PICTURE_CONTENT
);
84 return static_cast<const PictureDrawQuad
*>(quad
);
87 void PictureDrawQuad::ExtendValue(base::trace_event::TracedValue
* value
) const {
88 ContentDrawQuadBase::ExtendValue(value
);
89 MathUtil::AddToTracedValue("content_rect", content_rect
, value
);
90 value
->SetDouble("contents_scale", contents_scale
);
91 value
->SetInteger("texture_format", texture_format
);
92 // TODO(piman): raster_source?