| Index: src/gpu/effects/GrTextureStripAtlas.cpp
|
| ===================================================================
|
| --- src/gpu/effects/GrTextureStripAtlas.cpp (revision 8377)
|
| +++ src/gpu/effects/GrTextureStripAtlas.cpp (working copy)
|
| @@ -229,7 +229,8 @@
|
| fRows[i].fPrev = NULL;
|
| this->appendLRU(fRows + i);
|
| }
|
| - GrAssert(NULL == fLRUFront->fPrev && NULL == fLRUBack->fNext);
|
| + GrAssert(NULL == fLRUFront || NULL == fLRUFront->fPrev);
|
| + GrAssert(NULL == fLRUBack || NULL == fLRUBack->fNext);
|
| }
|
|
|
| void GrTextureStripAtlas::appendLRU(AtlasRow* row) {
|
|
|