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

Side by Side Diff: cc/solid_color_draw_quad.cc

Issue 11411050: cc: Make the DrawQuad subclasses into struct-like classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 8 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « cc/solid_color_draw_quad.h ('k') | cc/solid_color_layer_impl.cc » ('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/solid_color_draw_quad.h" 5 #include "cc/solid_color_draw_quad.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 8
9 namespace cc { 9 namespace cc {
10 10
11 scoped_ptr<SolidColorDrawQuad> SolidColorDrawQuad::create(const SharedQuadState* sharedQuadState, const gfx::Rect& quadRect, SkColor color) 11 SolidColorDrawQuad::SolidColorDrawQuad() : color(0) {}
12 { 12
13 return make_scoped_ptr(new SolidColorDrawQuad(sharedQuadState, quadRect, col or)); 13 scoped_ptr<SolidColorDrawQuad> SolidColorDrawQuad::Create() {
14 return make_scoped_ptr(new SolidColorDrawQuad);
14 } 15 }
15 16
16 SolidColorDrawQuad::SolidColorDrawQuad(const SharedQuadState* sharedQuadState, c onst gfx::Rect& quadRect, SkColor color) 17 void SolidColorDrawQuad::SetNew(const SharedQuadState* shared_quad_state,
17 : m_color(color) 18 gfx::Rect rect,
18 { 19 SkColor color) {
19 gfx::Rect opaqueRect = SkColorGetA(m_color) == 255 ? quadRect : gfx::Rect(); 20 gfx::Rect opaque_rect = SkColorGetA(color) == 255 ? rect : gfx::Rect();
20 gfx::Rect visibleRect = quadRect; 21 gfx::Rect visible_rect = rect;
21 bool needsBlending = false; 22 bool needs_blending = false;
22 DrawQuad::SetAll(sharedQuadState, DrawQuad::SOLID_COLOR, quadRect, opaqueRec t, visibleRect, needsBlending); 23 DrawQuad::SetAll(shared_quad_state, DrawQuad::SOLID_COLOR, rect, opaque_rect,
24 visible_rect, needs_blending);
25 this->color = color;
23 } 26 }
24 27
25 const SolidColorDrawQuad* SolidColorDrawQuad::materialCast(const DrawQuad* quad) 28 void SolidColorDrawQuad::SetAll(const SharedQuadState* shared_quad_state,
26 { 29 gfx::Rect rect,
27 DCHECK(quad->material == DrawQuad::SOLID_COLOR); 30 gfx::Rect opaque_rect,
28 return static_cast<const SolidColorDrawQuad*>(quad); 31 gfx::Rect visible_rect,
32 bool needs_blending,
33 SkColor color) {
34 DrawQuad::SetAll(shared_quad_state, DrawQuad::SOLID_COLOR, rect, opaque_rect,
35 visible_rect, needs_blending);
36 this->color = color;
37 }
38
39 const SolidColorDrawQuad* SolidColorDrawQuad::MaterialCast(
40 const DrawQuad* quad) {
41 DCHECK(quad->material == DrawQuad::SOLID_COLOR);
42 return static_cast<const SolidColorDrawQuad*>(quad);
29 } 43 }
30 44
31 } // namespacec cc 45 } // namespacec cc
OLDNEW
« no previous file with comments | « cc/solid_color_draw_quad.h ('k') | cc/solid_color_layer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698