OLD | NEW |
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/checkerboard_draw_quad.h" | 5 #include "cc/checkerboard_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<CheckerboardDrawQuad> CheckerboardDrawQuad::create(const SharedQuadSt
ate* sharedQuadState, const gfx::Rect& quadRect, SkColor color) | 11 CheckerboardDrawQuad::CheckerboardDrawQuad() : color(0) {} |
12 { | 12 |
13 return make_scoped_ptr(new CheckerboardDrawQuad(sharedQuadState, quadRect, c
olor)); | 13 scoped_ptr<CheckerboardDrawQuad> CheckerboardDrawQuad::Create() { |
| 14 return make_scoped_ptr(new CheckerboardDrawQuad); |
14 } | 15 } |
15 | 16 |
16 CheckerboardDrawQuad::CheckerboardDrawQuad(const SharedQuadState* sharedQuadStat
e, const gfx::Rect& quadRect, SkColor color) | 17 void CheckerboardDrawQuad::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::CHECKERBOARD, quadRect, opaqueRe
ct, visibleRect, needsBlending); | 23 DrawQuad::SetAll(shared_quad_state, DrawQuad::CHECKERBOARD, rect, opaque_rect, |
| 24 visible_rect, needs_blending); |
| 25 this->color = color; |
23 } | 26 } |
24 | 27 |
25 const CheckerboardDrawQuad* CheckerboardDrawQuad::materialCast(const DrawQuad* q
uad) | 28 void CheckerboardDrawQuad::SetAll(const SharedQuadState* shared_quad_state, |
26 { | 29 gfx::Rect rect, |
27 DCHECK(quad->material == DrawQuad::CHECKERBOARD); | 30 gfx::Rect opaque_rect, |
28 return static_cast<const CheckerboardDrawQuad*>(quad); | 31 gfx::Rect visible_rect, |
| 32 bool needs_blending, |
| 33 SkColor color) { |
| 34 DrawQuad::SetAll(shared_quad_state, DrawQuad::CHECKERBOARD, rect, opaque_rect, |
| 35 visible_rect, needs_blending); |
| 36 this->color = color; |
| 37 } |
| 38 |
| 39 const CheckerboardDrawQuad* CheckerboardDrawQuad::MaterialCast( |
| 40 const DrawQuad* quad) { |
| 41 DCHECK(quad->material == DrawQuad::CHECKERBOARD); |
| 42 return static_cast<const CheckerboardDrawQuad*>(quad); |
29 } | 43 } |
30 | 44 |
31 } // namespace cc | 45 } // namespace cc |
OLD | NEW |