summaryrefslogtreecommitdiffstats
path: root/cc/io_surface_draw_quad.h
diff options
context:
space:
mode:
Diffstat (limited to 'cc/io_surface_draw_quad.h')
-rw-r--r--cc/io_surface_draw_quad.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/cc/io_surface_draw_quad.h b/cc/io_surface_draw_quad.h
index bce3dd5..30574a4 100644
--- a/cc/io_surface_draw_quad.h
+++ b/cc/io_surface_draw_quad.h
@@ -13,22 +13,22 @@ namespace cc {
#pragma pack(push, 4)
-class CCIOSurfaceDrawQuad : public CCDrawQuad {
+class IOSurfaceDrawQuad : public DrawQuad {
public:
enum Orientation {
Flipped,
Unflipped
};
- static scoped_ptr<CCIOSurfaceDrawQuad> create(const CCSharedQuadState*, const gfx::Rect&, const gfx::Size& ioSurfaceSize, unsigned ioSurfaceTextureId, Orientation);
+ static scoped_ptr<IOSurfaceDrawQuad> create(const SharedQuadState*, const gfx::Rect&, const gfx::Size& ioSurfaceSize, unsigned ioSurfaceTextureId, Orientation);
gfx::Size ioSurfaceSize() const { return m_ioSurfaceSize; }
unsigned ioSurfaceTextureId() const { return m_ioSurfaceTextureId; }
Orientation orientation() const { return m_orientation; }
- static const CCIOSurfaceDrawQuad* materialCast(const CCDrawQuad*);
+ static const IOSurfaceDrawQuad* materialCast(const DrawQuad*);
private:
- CCIOSurfaceDrawQuad(const CCSharedQuadState*, const gfx::Rect&, const gfx::Size& ioSurfaceSize, unsigned ioSurfaceTextureId, Orientation);
+ IOSurfaceDrawQuad(const SharedQuadState*, const gfx::Rect&, const gfx::Size& ioSurfaceSize, unsigned ioSurfaceTextureId, Orientation);
gfx::Size m_ioSurfaceSize;
unsigned m_ioSurfaceTextureId;