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

Unified Diff: cc/CCRendererSoftware.h

Issue 11122003: [cc] Rename all cc/ filenames to Chromium style (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/CCRendererGL.cpp ('k') | cc/CCRendererSoftware.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/CCRendererSoftware.h
diff --git a/cc/CCRendererSoftware.h b/cc/CCRendererSoftware.h
index 2ad688fc0a1f6af548c65f4f1bdd60ac8d46b4e0..827aa21d595775756877cce85811799a355d9492 100644
--- a/cc/CCRendererSoftware.h
+++ b/cc/CCRendererSoftware.h
@@ -2,75 +2,5 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CCRendererSoftware_h
-#define CCRendererSoftware_h
-
-#include "base/basictypes.h"
-#include "CCDirectRenderer.h"
-#include "CCLayerTreeHost.h"
-#include <public/WebCompositorSoftwareOutputDevice.h>
-
-namespace cc {
-
-class CCDebugBorderDrawQuad;
-class CCRendererClient;
-class CCResourceProvider;
-class CCSolidColorDrawQuad;
-class CCTextureDrawQuad;
-class CCTileDrawQuad;
-
-class CCRendererSoftware : public CCDirectRenderer {
-public:
- static PassOwnPtr<CCRendererSoftware> create(CCRendererClient*, CCResourceProvider*, WebKit::WebCompositorSoftwareOutputDevice*);
- virtual ~CCRendererSoftware();
-
- virtual const RendererCapabilities& capabilities() const OVERRIDE;
-
- virtual void viewportChanged() OVERRIDE;
-
- virtual void finish() OVERRIDE;
-
- virtual bool swapBuffers() OVERRIDE;
-
- virtual void getFramebufferPixels(void *pixels, const IntRect&) OVERRIDE;
-
- virtual void setVisible(bool) OVERRIDE;
-
-protected:
- virtual void bindFramebufferToOutputSurface(DrawingFrame&) OVERRIDE;
- virtual bool bindFramebufferToTexture(DrawingFrame&, const CCScopedTexture*, const IntRect& framebufferRect) OVERRIDE;
- virtual void setDrawViewportSize(const IntSize&) OVERRIDE;
- virtual void enableScissorTestRect(const IntRect& scissorRect) OVERRIDE;
- virtual void disableScissorTest() OVERRIDE;
- virtual void clearFramebuffer(DrawingFrame&) OVERRIDE;
- virtual void drawQuad(DrawingFrame&, const CCDrawQuad*) OVERRIDE;
- virtual void beginDrawingFrame(DrawingFrame&) OVERRIDE;
- virtual void finishDrawingFrame(DrawingFrame&) OVERRIDE;
- virtual bool flippedFramebuffer() const OVERRIDE;
-
-private:
- CCRendererSoftware(CCRendererClient*, CCResourceProvider*, WebKit::WebCompositorSoftwareOutputDevice*);
-
- bool isSoftwareResource(CCResourceProvider::ResourceId) const;
-
- void drawDebugBorderQuad(const DrawingFrame&, const CCDebugBorderDrawQuad*);
- void drawSolidColorQuad(const DrawingFrame&, const CCSolidColorDrawQuad*);
- void drawTextureQuad(const DrawingFrame&, const CCTextureDrawQuad*);
- void drawTileQuad(const DrawingFrame&, const CCTileDrawQuad*);
- void drawUnsupportedQuad(const DrawingFrame&, const CCDrawQuad*);
-
- RendererCapabilities m_capabilities;
- bool m_visible;
-
- WebKit::WebCompositorSoftwareOutputDevice* m_outputDevice;
- OwnPtr<SkCanvas> m_skRootCanvas;
- SkCanvas* m_skCurrentCanvas;
- SkPaint m_skCurrentPaint;
- OwnPtr<CCResourceProvider::ScopedWriteLockSoftware> m_currentFramebufferLock;
-
- DISALLOW_COPY_AND_ASSIGN(CCRendererSoftware);
-};
-
-}
-
-#endif
+// Temporary forwarding header
+#include "cc/software_renderer.h"
« no previous file with comments | « cc/CCRendererGL.cpp ('k') | cc/CCRendererSoftware.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698