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 #ifndef CCRendererSoftware_h | 5 #ifndef CCRendererSoftware_h |
6 #define CCRendererSoftware_h | 6 #define CCRendererSoftware_h |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "cc/direct_renderer.h" | 9 #include "cc/direct_renderer.h" |
10 #include <public/WebCompositorSoftwareOutputDevice.h> | 10 |
| 11 namespace WebKit { |
| 12 class WebCompositorSoftwareOutputDevice; |
| 13 } |
11 | 14 |
12 namespace cc { | 15 namespace cc { |
13 | 16 |
14 class DebugBorderDrawQuad; | 17 class DebugBorderDrawQuad; |
15 class RendererClient; | 18 class RendererClient; |
16 class ResourceProvider; | 19 class ResourceProvider; |
17 class SolidColorDrawQuad; | 20 class SolidColorDrawQuad; |
18 class TextureDrawQuad; | 21 class TextureDrawQuad; |
19 class TileDrawQuad; | 22 class TileDrawQuad; |
20 class RenderPassDrawQuad; | 23 class RenderPassDrawQuad; |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 SkCanvas* m_skCurrentCanvas; | 71 SkCanvas* m_skCurrentCanvas; |
69 SkPaint m_skCurrentPaint; | 72 SkPaint m_skCurrentPaint; |
70 scoped_ptr<ResourceProvider::ScopedWriteLockSoftware> m_currentFramebufferLo
ck; | 73 scoped_ptr<ResourceProvider::ScopedWriteLockSoftware> m_currentFramebufferLo
ck; |
71 | 74 |
72 DISALLOW_COPY_AND_ASSIGN(SoftwareRenderer); | 75 DISALLOW_COPY_AND_ASSIGN(SoftwareRenderer); |
73 }; | 76 }; |
74 | 77 |
75 } | 78 } |
76 | 79 |
77 #endif | 80 #endif |
OLD | NEW |