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

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

Issue 145313006: [#7] Pass gfx structs by const ref (gfx::Size) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase 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/io_surface_draw_quad.h ('k') | cc/quads/picture_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 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 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/io_surface_draw_quad.h" 5 #include "cc/quads/io_surface_draw_quad.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 IOSurfaceDrawQuad::IOSurfaceDrawQuad() 13 IOSurfaceDrawQuad::IOSurfaceDrawQuad()
14 : io_surface_resource_id(0), 14 : io_surface_resource_id(0),
15 orientation(FLIPPED) { 15 orientation(FLIPPED) {
16 } 16 }
17 17
18 scoped_ptr<IOSurfaceDrawQuad> IOSurfaceDrawQuad::Create() { 18 scoped_ptr<IOSurfaceDrawQuad> IOSurfaceDrawQuad::Create() {
19 return make_scoped_ptr(new IOSurfaceDrawQuad); 19 return make_scoped_ptr(new IOSurfaceDrawQuad);
20 } 20 }
21 21
22 void IOSurfaceDrawQuad::SetNew(const SharedQuadState* shared_quad_state, 22 void IOSurfaceDrawQuad::SetNew(const SharedQuadState* shared_quad_state,
23 const gfx::Rect& rect, 23 const gfx::Rect& rect,
24 const gfx::Rect& opaque_rect, 24 const gfx::Rect& opaque_rect,
25 gfx::Size io_surface_size, 25 const gfx::Size& io_surface_size,
26 unsigned io_surface_resource_id, 26 unsigned io_surface_resource_id,
27 Orientation orientation) { 27 Orientation orientation) {
28 gfx::Rect visible_rect = rect; 28 gfx::Rect visible_rect = rect;
29 bool needs_blending = false; 29 bool needs_blending = false;
30 DrawQuad::SetAll(shared_quad_state, DrawQuad::IO_SURFACE_CONTENT, rect, 30 DrawQuad::SetAll(shared_quad_state, DrawQuad::IO_SURFACE_CONTENT, rect,
31 opaque_rect, visible_rect, needs_blending); 31 opaque_rect, visible_rect, needs_blending);
32 this->io_surface_size = io_surface_size; 32 this->io_surface_size = io_surface_size;
33 this->io_surface_resource_id = io_surface_resource_id; 33 this->io_surface_resource_id = io_surface_resource_id;
34 this->orientation = orientation; 34 this->orientation = orientation;
35 } 35 }
36 36
37 void IOSurfaceDrawQuad::SetAll(const SharedQuadState* shared_quad_state, 37 void IOSurfaceDrawQuad::SetAll(const SharedQuadState* shared_quad_state,
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 gfx::Size io_surface_size, 42 const gfx::Size& io_surface_size,
43 unsigned io_surface_resource_id, 43 unsigned io_surface_resource_id,
44 Orientation orientation) { 44 Orientation orientation) {
45 DrawQuad::SetAll(shared_quad_state, DrawQuad::IO_SURFACE_CONTENT, rect, 45 DrawQuad::SetAll(shared_quad_state, DrawQuad::IO_SURFACE_CONTENT, rect,
46 opaque_rect, visible_rect, needs_blending); 46 opaque_rect, visible_rect, needs_blending);
47 this->io_surface_size = io_surface_size; 47 this->io_surface_size = io_surface_size;
48 this->io_surface_resource_id = io_surface_resource_id; 48 this->io_surface_resource_id = io_surface_resource_id;
49 this->orientation = orientation; 49 this->orientation = orientation;
50 } 50 }
51 51
52 void IOSurfaceDrawQuad::IterateResources( 52 void IOSurfaceDrawQuad::IterateResources(
(...skipping 17 matching lines...) Expand all
70 break; 70 break;
71 case UNFLIPPED: 71 case UNFLIPPED:
72 orientation_string = "unflipped"; 72 orientation_string = "unflipped";
73 break; 73 break;
74 } 74 }
75 75
76 value->SetString("orientation", orientation_string); 76 value->SetString("orientation", orientation_string);
77 } 77 }
78 78
79 } // namespace cc 79 } // namespace cc
OLDNEW
« no previous file with comments | « cc/quads/io_surface_draw_quad.h ('k') | cc/quads/picture_draw_quad.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698