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

Unified Diff: cc/CCRendererSoftware.h

Issue 10984053: cc: Use ui/gfx geometry types for the CCRenderPass and CCDrawQuad classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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
Index: cc/CCRendererSoftware.h
diff --git a/cc/CCRendererSoftware.h b/cc/CCRendererSoftware.h
index cf9476b9cdb05404cb0e0e3609b017d6e717595e..ea2c4139988d9be4f307dba64afa382632aa0d1a 100644
--- a/cc/CCRendererSoftware.h
+++ b/cc/CCRendererSoftware.h
@@ -32,15 +32,15 @@ public:
virtual bool swapBuffers() OVERRIDE;
- virtual void getFramebufferPixels(void *pixels, const IntRect&) OVERRIDE;
+ virtual void getFramebufferPixels(void *pixels, const cc::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 bool bindFramebufferToTexture(DrawingFrame&, const CCScopedTexture*, const ccmath::IntRect& framebufferRect) OVERRIDE;
+ virtual void setDrawViewportSize(const ccmath::IntSize&) OVERRIDE;
+ virtual void enableScissorTestRect(const ccmath::IntRect& scissorRect) OVERRIDE;
virtual void disableScissorTest() OVERRIDE;
virtual void clearFramebuffer(DrawingFrame&) OVERRIDE;
virtual void drawQuad(DrawingFrame&, const CCDrawQuad*) OVERRIDE;
« no previous file with comments | « cc/CCRendererGL.cpp ('k') | cc/CCRendererSoftware.cpp » ('j') | cc/math/clamp.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698