Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(341)

Unified Diff: src/gpu/GrDrawTarget.h

Issue 1142263002: small cleanup of GrAtlas (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: tidy Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/gpu/GrAtlas.cpp ('k') | src/gpu/GrImmediateDrawTarget.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/gpu/GrDrawTarget.h
diff --git a/src/gpu/GrDrawTarget.h b/src/gpu/GrDrawTarget.h
index e0b96b2a3bfe4ea4a506fc9e64fd53590e8b81f2..a5e3b8efee3eb852dcb705bef5ae5281bd892036 100644
--- a/src/gpu/GrDrawTarget.h
+++ b/src/gpu/GrDrawTarget.h
@@ -202,23 +202,6 @@ public:
*/
virtual void purgeResources() {};
- ///////////////////////////////////////////////////////////////////////////
- // Draw execution tracking (for font atlases and other resources)
- class DrawToken {
- public:
- DrawToken(GrDrawTarget* drawTarget, uint32_t drawID) :
- fDrawTarget(drawTarget), fDrawID(drawID) {}
-
- bool isIssued() { return fDrawTarget && fDrawTarget->isIssued(fDrawID); }
-
- private:
- GrDrawTarget* fDrawTarget;
- uint32_t fDrawID; // this may wrap, but we're doing direct comparison
- // so that should be okay
- };
-
- virtual DrawToken getCurrentDrawToken() { return DrawToken(this, 0); }
-
bool programUnitTest(int maxStages);
protected:
« no previous file with comments | « src/gpu/GrAtlas.cpp ('k') | src/gpu/GrImmediateDrawTarget.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698