| Index: src/gpu/GrBatchAtlas.h
|
| diff --git a/src/gpu/GrBatchAtlas.h b/src/gpu/GrBatchAtlas.h
|
| index cd8123f140980fdb581ceb9789948098c85d7452..b514b9d74fbcc0b3198109ebaf86eb387283a617 100644
|
| --- a/src/gpu/GrBatchAtlas.h
|
| +++ b/src/gpu/GrBatchAtlas.h
|
| @@ -25,8 +25,6 @@
|
| // An AtlasID is an opaque handle which callers can use to determine if the atlas contains
|
| // a specific piece of data
|
| typedef uint32_t AtlasID;
|
| - static const uint32_t kInvalidAtlasID = 0;
|
| - static const uint64_t kInvalidAtlasGeneration = 0;
|
|
|
| // A function pointer for use as a callback during eviction. Whenever GrBatchAtlas evicts a
|
| // specific AtlasID, it will call all of the registered listeners so they can optionally process
|
| @@ -45,7 +43,6 @@
|
|
|
| GrTexture* getTexture() const { return fTexture; }
|
|
|
| - uint64_t atlasGeneration() const { return fAtlasGeneration; }
|
| bool hasID(AtlasID id);
|
| void setLastRefToken(AtlasID id, BatchToken batchToken);
|
| void registerEvictionCallback(EvictionFunc func, void* userData) {
|
| @@ -75,7 +72,6 @@
|
| int fPlotWidth;
|
| int fPlotHeight;
|
| size_t fBPP;
|
| - uint64_t fAtlasGeneration;
|
|
|
| struct EvictionData {
|
| EvictionFunc fFunc;
|
|
|