| 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() { | 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 const gfx::Size& io_surface_size, | 25 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 const gfx::Size& io_surface_size, | 42 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 Loading... |
| 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 |
| OLD | NEW |