| 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/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() { | |
| 19 return make_scoped_ptr(new IOSurfaceDrawQuad); | |
| 20 } | |
| 21 | |
| 22 void IOSurfaceDrawQuad::SetNew(const SharedQuadState* shared_quad_state, | 18 void IOSurfaceDrawQuad::SetNew(const SharedQuadState* shared_quad_state, |
| 23 const gfx::Rect& rect, | 19 const gfx::Rect& rect, |
| 24 const gfx::Rect& opaque_rect, | 20 const gfx::Rect& opaque_rect, |
| 25 const gfx::Rect& visible_rect, | 21 const gfx::Rect& visible_rect, |
| 26 const gfx::Size& io_surface_size, | 22 const gfx::Size& io_surface_size, |
| 27 unsigned io_surface_resource_id, | 23 unsigned io_surface_resource_id, |
| 28 Orientation orientation) { | 24 Orientation orientation) { |
| 29 bool needs_blending = false; | 25 bool needs_blending = false; |
| 30 DrawQuad::SetAll(shared_quad_state, DrawQuad::IO_SURFACE_CONTENT, rect, | 26 DrawQuad::SetAll(shared_quad_state, DrawQuad::IO_SURFACE_CONTENT, rect, |
| 31 opaque_rect, visible_rect, needs_blending); | 27 opaque_rect, visible_rect, needs_blending); |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 break; | 66 break; |
| 71 case UNFLIPPED: | 67 case UNFLIPPED: |
| 72 orientation_string = "unflipped"; | 68 orientation_string = "unflipped"; |
| 73 break; | 69 break; |
| 74 } | 70 } |
| 75 | 71 |
| 76 value->SetString("orientation", orientation_string); | 72 value->SetString("orientation", orientation_string); |
| 77 } | 73 } |
| 78 | 74 |
| 79 } // namespace cc | 75 } // namespace cc |
| OLD | NEW |