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

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

Issue 147603006: [#7] Resubmitted - Pass gfx structs by const ref (gfx::Size) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resubmit 145313006 Created 6 years, 10 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
« no previous file with comments | « cc/quads/content_draw_quad_base.h ('k') | cc/quads/io_surface_draw_quad.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/content_draw_quad_base.h" 5 #include "cc/quads/content_draw_quad_base.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.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 10
11 namespace cc { 11 namespace cc {
12 12
13 ContentDrawQuadBase::ContentDrawQuadBase() 13 ContentDrawQuadBase::ContentDrawQuadBase()
14 : swizzle_contents(false) { 14 : swizzle_contents(false) {
15 } 15 }
16 16
17 ContentDrawQuadBase::~ContentDrawQuadBase() { 17 ContentDrawQuadBase::~ContentDrawQuadBase() {
18 } 18 }
19 19
20 void ContentDrawQuadBase::SetNew(const SharedQuadState* shared_quad_state, 20 void ContentDrawQuadBase::SetNew(const SharedQuadState* shared_quad_state,
21 DrawQuad::Material material, 21 DrawQuad::Material material,
22 const gfx::Rect& rect, 22 const gfx::Rect& rect,
23 const gfx::Rect& opaque_rect, 23 const gfx::Rect& opaque_rect,
24 const gfx::RectF& tex_coord_rect, 24 const gfx::RectF& tex_coord_rect,
25 gfx::Size texture_size, 25 const gfx::Size& texture_size,
26 bool swizzle_contents) { 26 bool swizzle_contents) {
27 gfx::Rect visible_rect = rect; 27 gfx::Rect visible_rect = rect;
28 bool needs_blending = false; 28 bool needs_blending = false;
29 DrawQuad::SetAll(shared_quad_state, material, rect, opaque_rect, 29 DrawQuad::SetAll(shared_quad_state, material, rect, opaque_rect,
30 visible_rect, needs_blending); 30 visible_rect, needs_blending);
31 this->tex_coord_rect = tex_coord_rect; 31 this->tex_coord_rect = tex_coord_rect;
32 this->texture_size = texture_size; 32 this->texture_size = texture_size;
33 this->swizzle_contents = swizzle_contents; 33 this->swizzle_contents = swizzle_contents;
34 } 34 }
35 35
36 void ContentDrawQuadBase::SetAll(const SharedQuadState* shared_quad_state, 36 void ContentDrawQuadBase::SetAll(const SharedQuadState* shared_quad_state,
37 DrawQuad::Material material, 37 DrawQuad::Material material,
38 const gfx::Rect& rect, 38 const gfx::Rect& rect,
39 const gfx::Rect& opaque_rect, 39 const gfx::Rect& opaque_rect,
40 const gfx::Rect& visible_rect, 40 const gfx::Rect& visible_rect,
41 bool needs_blending, 41 bool needs_blending,
42 const gfx::RectF& tex_coord_rect, 42 const gfx::RectF& tex_coord_rect,
43 gfx::Size texture_size, 43 const gfx::Size& texture_size,
44 bool swizzle_contents) { 44 bool swizzle_contents) {
45 DrawQuad::SetAll(shared_quad_state, material, rect, opaque_rect, 45 DrawQuad::SetAll(shared_quad_state, material, rect, opaque_rect,
46 visible_rect, needs_blending); 46 visible_rect, needs_blending);
47 this->tex_coord_rect = tex_coord_rect; 47 this->tex_coord_rect = tex_coord_rect;
48 this->texture_size = texture_size; 48 this->texture_size = texture_size;
49 this->swizzle_contents = swizzle_contents; 49 this->swizzle_contents = swizzle_contents;
50 } 50 }
51 51
52 void ContentDrawQuadBase::ExtendValue(base::DictionaryValue* value) const { 52 void ContentDrawQuadBase::ExtendValue(base::DictionaryValue* value) const {
53 value->Set("tex_coord_rect", MathUtil::AsValue(tex_coord_rect).release()); 53 value->Set("tex_coord_rect", MathUtil::AsValue(tex_coord_rect).release());
54 value->Set("texture_size", MathUtil::AsValue(texture_size).release()); 54 value->Set("texture_size", MathUtil::AsValue(texture_size).release());
55 value->SetBoolean("swizzle_contents", swizzle_contents); 55 value->SetBoolean("swizzle_contents", swizzle_contents);
56 } 56 }
57 57
58 } // namespace cc 58 } // namespace cc
OLDNEW
« no previous file with comments | « cc/quads/content_draw_quad_base.h ('k') | cc/quads/io_surface_draw_quad.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698