Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(246)

Side by Side Diff: cc/software_renderer.h

Issue 11274017: Added support for YUV videos to the software compositor. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Some nits. Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698