| Index: src/gpu/GrBitmapTextContext.cpp
|
| diff --git a/src/gpu/GrBitmapTextContext.cpp b/src/gpu/GrBitmapTextContext.cpp
|
| index 25c13ec8d1ae52ac34616e307bf68c1df42651cf..78b6174b29ffb9b826d35495619fd7be66d0208c 100755
|
| --- a/src/gpu/GrBitmapTextContext.cpp
|
| +++ b/src/gpu/GrBitmapTextContext.cpp
|
| @@ -56,7 +56,7 @@ GrBitmapTextContext::GrBitmapTextContext(GrContext* context,
|
|
|
| fCurrTexture = NULL;
|
| fCurrVertex = 0;
|
| - fEffectTextureGenID = 0;
|
| + fEffectTextureInstanceID = 0;
|
|
|
| fVertices = NULL;
|
| fMaxVertices = 0;
|
| @@ -94,11 +94,11 @@ void GrBitmapTextContext::flushGlyphs() {
|
| SkASSERT(fCurrTexture);
|
| GrTextureParams params(SkShader::kRepeat_TileMode, GrTextureParams::kNone_FilterMode);
|
|
|
| - uint32_t textureGenID = fCurrTexture->getGenerationID();
|
| + uint64_t textureInstanceID = fCurrTexture->getInstanceID();
|
|
|
| - if (textureGenID != fEffectTextureGenID) {
|
| + if (textureInstanceID != fEffectTextureInstanceID) {
|
| fCachedEffect.reset(GrCustomCoordsTextureEffect::Create(fCurrTexture, params));
|
| - fEffectTextureGenID = textureGenID;
|
| + fEffectTextureInstanceID = textureInstanceID;
|
| }
|
|
|
| // This effect could be stored with one of the cache objects (atlas?)
|
|
|