| Index: cc/CCTileDrawQuad.cpp
|
| diff --git a/cc/CCTileDrawQuad.cpp b/cc/CCTileDrawQuad.cpp
|
| index e317cf871cbdc9b39a85de61a64a00f1f0e272f7..07cd8b5bffddd79bdf145c0d5483c72dadf84c11 100644
|
| --- a/cc/CCTileDrawQuad.cpp
|
| +++ b/cc/CCTileDrawQuad.cpp
|
| @@ -8,12 +8,12 @@
|
|
|
| namespace cc {
|
|
|
| -scoped_ptr<CCTileDrawQuad> CCTileDrawQuad::create(const CCSharedQuadState* sharedQuadState, const IntRect& quadRect, const IntRect& opaqueRect, unsigned resourceId, const IntPoint& textureOffset, const IntSize& textureSize, GC3Dint textureFilter, bool swizzleContents, bool leftEdgeAA, bool topEdgeAA, bool rightEdgeAA, bool bottomEdgeAA)
|
| +scoped_ptr<CCTileDrawQuad> CCTileDrawQuad::create(const CCSharedQuadState* sharedQuadState, const WebKit::WebRect& quadRect, const WebKit::WebRect& opaqueRect, unsigned resourceId, const WebKit::WebPoint& textureOffset, const WebKit::WebSize& textureSize, GC3Dint textureFilter, bool swizzleContents, bool leftEdgeAA, bool topEdgeAA, bool rightEdgeAA, bool bottomEdgeAA)
|
| {
|
| return scoped_ptr<CCTileDrawQuad>(new CCTileDrawQuad(sharedQuadState, quadRect, opaqueRect, resourceId, textureOffset, textureSize, textureFilter, swizzleContents, leftEdgeAA, topEdgeAA, rightEdgeAA, bottomEdgeAA));
|
| }
|
|
|
| -CCTileDrawQuad::CCTileDrawQuad(const CCSharedQuadState* sharedQuadState, const IntRect& quadRect, const IntRect& opaqueRect, unsigned resourceId, const IntPoint& textureOffset, const IntSize& textureSize, GC3Dint textureFilter, bool swizzleContents, bool leftEdgeAA, bool topEdgeAA, bool rightEdgeAA, bool bottomEdgeAA)
|
| +CCTileDrawQuad::CCTileDrawQuad(const CCSharedQuadState* sharedQuadState, const WebKit::WebRect& quadRect, const WebKit::WebRect& opaqueRect, unsigned resourceId, const WebKit::WebPoint& textureOffset, const WebKit::WebSize& textureSize, GC3Dint textureFilter, bool swizzleContents, bool leftEdgeAA, bool topEdgeAA, bool rightEdgeAA, bool bottomEdgeAA)
|
| : CCDrawQuad(sharedQuadState, CCDrawQuad::TiledContent, quadRect)
|
| , m_resourceId(resourceId)
|
| , m_textureOffset(textureOffset)
|
|
|