| Index: cc/CCSolidColorLayerImpl.cpp
|
| diff --git a/cc/CCSolidColorLayerImpl.cpp b/cc/CCSolidColorLayerImpl.cpp
|
| index de21c52cab4e8a995691aca9e57a878d28b627b6..abf8d489336feb59f17339056bf524a377c787e5 100644
|
| --- a/cc/CCSolidColorLayerImpl.cpp
|
| +++ b/cc/CCSolidColorLayerImpl.cpp
|
| @@ -39,7 +39,7 @@ void CCSolidColorLayerImpl::appendQuads(CCQuadSink& quadSink, CCAppendQuadsData&
|
| for (int x = 0; x < width; x += m_tileSize) {
|
| for (int y = 0; y < height; y += m_tileSize) {
|
| IntRect solidTileRect(x, y, min(width - x, m_tileSize), min(height - y, m_tileSize));
|
| - quadSink.append(CCSolidColorDrawQuad::create(sharedQuadState, solidTileRect, backgroundColor()), appendQuadsData);
|
| + quadSink.append(CCSolidColorDrawQuad::create(sharedQuadState, solidTileRect, backgroundColor()).PassAs<CCDrawQuad>(), appendQuadsData);
|
| }
|
| }
|
| }
|
|
|