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 "CCDirectRenderer.h" | 9 #include "cc/direct_renderer.h" |
10 #include <public/WebCompositorSoftwareOutputDevice.h> | 10 #include <public/WebCompositorSoftwareOutputDevice.h> |
11 | 11 |
12 namespace cc { | 12 namespace cc { |
13 | 13 |
14 class DebugBorderDrawQuad; | 14 class DebugBorderDrawQuad; |
15 class RendererClient; | 15 class RendererClient; |
16 class ResourceProvider; | 16 class ResourceProvider; |
17 class SolidColorDrawQuad; | 17 class SolidColorDrawQuad; |
18 class TextureDrawQuad; | 18 class TextureDrawQuad; |
19 class TileDrawQuad; | 19 class TileDrawQuad; |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 SkCanvas* m_skCurrentCanvas; | 68 SkCanvas* m_skCurrentCanvas; |
69 SkPaint m_skCurrentPaint; | 69 SkPaint m_skCurrentPaint; |
70 scoped_ptr<ResourceProvider::ScopedWriteLockSoftware> m_currentFramebufferLo
ck; | 70 scoped_ptr<ResourceProvider::ScopedWriteLockSoftware> m_currentFramebufferLo
ck; |
71 | 71 |
72 DISALLOW_COPY_AND_ASSIGN(SoftwareRenderer); | 72 DISALLOW_COPY_AND_ASSIGN(SoftwareRenderer); |
73 }; | 73 }; |
74 | 74 |
75 } | 75 } |
76 | 76 |
77 #endif | 77 #endif |
OLD | NEW |