| Index: src/gpu/effects/GrTextureStripAtlas.h
|
| diff --git a/src/gpu/effects/GrTextureStripAtlas.h b/src/gpu/effects/GrTextureStripAtlas.h
|
| index e56e736d7716c4e87d1f5ce495031954bb71059e..29c73616b9e1c401dbbbc6ae64318f5412c34f07 100644
|
| --- a/src/gpu/effects/GrTextureStripAtlas.h
|
| +++ b/src/gpu/effects/GrTextureStripAtlas.h
|
| @@ -141,7 +141,8 @@ private:
|
| public:
|
| AtlasEntry() : fAtlas(NULL) {}
|
| ~AtlasEntry() { SkDELETE(fAtlas); }
|
| - int compare(const AtlasHashKey& key) const { return fKey.compare(key); }
|
| + bool EQ(const AtlasHashKey& other) const { return fKey.EQ(other); }
|
| + bool LT(const AtlasHashKey& other) const { return fKey.LT(other); }
|
| AtlasHashKey fKey;
|
| GrTextureStripAtlas* fAtlas;
|
| };
|
|
|