OLD | NEW |
1 // Copyright 2011 The Chromium Authors. All rights reserved. | 1 // Copyright 2011 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 #ifndef CCRenderSurface_h | 5 #ifndef CCRenderSurface_h |
6 #define CCRenderSurface_h | 6 #define CCRenderSurface_h |
7 | 7 |
8 #include "CCRenderPass.h" | |
9 #include "FloatRect.h" | 8 #include "FloatRect.h" |
10 #include "IntRect.h" | 9 #include "IntRect.h" |
11 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
12 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "cc/render_pass.h" |
13 #include "cc/shared_quad_state.h" | 13 #include "cc/shared_quad_state.h" |
14 #include <public/WebTransformationMatrix.h> | 14 #include <public/WebTransformationMatrix.h> |
15 | 15 |
16 namespace cc { | 16 namespace cc { |
17 | 17 |
18 class CCDamageTracker; | 18 class CCDamageTracker; |
19 class CCDelegatedRendererLayerImpl; | 19 class CCDelegatedRendererLayerImpl; |
20 class CCQuadSink; | 20 class CCQuadSink; |
21 class CCRenderPassSink; | 21 class CCRenderPassSink; |
22 class CCLayerImpl; | 22 class CCLayerImpl; |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 int m_targetRenderSurfaceLayerIndexHistory; | 119 int m_targetRenderSurfaceLayerIndexHistory; |
120 int m_currentLayerIndexHistory; | 120 int m_currentLayerIndexHistory; |
121 | 121 |
122 friend struct CCLayerIteratorActions; | 122 friend struct CCLayerIteratorActions; |
123 | 123 |
124 DISALLOW_COPY_AND_ASSIGN(CCRenderSurface); | 124 DISALLOW_COPY_AND_ASSIGN(CCRenderSurface); |
125 }; | 125 }; |
126 | 126 |
127 } | 127 } |
128 #endif | 128 #endif |
OLD | NEW |