| Index: cc/CCTileDrawQuad.cpp
|
| diff --git a/cc/CCTileDrawQuad.cpp b/cc/CCTileDrawQuad.cpp
|
| index a49cf86efea69ddeb6890e42f2ae1a37c62f4bcf..d1dba6828527c1c1119bd7b431f60cc8af619903 100644
|
| --- a/cc/CCTileDrawQuad.cpp
|
| +++ b/cc/CCTileDrawQuad.cpp
|
| @@ -8,12 +8,12 @@
|
|
|
| namespace cc {
|
|
|
| -PassOwnPtr<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)
|
| +PassOwnPtr<CCTileDrawQuad> CCTileDrawQuad::create(const CCSharedQuadState* sharedQuadState, const ccmath::IntRect& quadRect, const ccmath::IntRect& opaqueRect, unsigned resourceId, const ccmath::IntPoint& textureOffset, const ccmath::IntSize& textureSize, GC3Dint textureFilter, bool swizzleContents, bool leftEdgeAA, bool topEdgeAA, bool rightEdgeAA, bool bottomEdgeAA)
|
| {
|
| return adoptPtr(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 ccmath::IntRect& quadRect, const ccmath::IntRect& opaqueRect, unsigned resourceId, const ccmath::IntPoint& textureOffset, const ccmath::IntSize& textureSize, GC3Dint textureFilter, bool swizzleContents, bool leftEdgeAA, bool topEdgeAA, bool rightEdgeAA, bool bottomEdgeAA)
|
| : CCDrawQuad(sharedQuadState, CCDrawQuad::TiledContent, quadRect)
|
| , m_resourceId(resourceId)
|
| , m_textureOffset(textureOffset)
|
|
|