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

Unified Diff: src/gpu/GrAtlas.cpp

Issue 388103002: Make GrAtlas::removePlot static (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 5 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.h ('k') | src/gpu/GrTextStrike.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/gpu/GrAtlas.cpp
diff --git a/src/gpu/GrAtlas.cpp b/src/gpu/GrAtlas.cpp
index 1bff42a82ff8dc3f9c3e82e8887121e9c49f5565..a9b8ae95e6f0f67ffd6ed1230e7514d42e9364d0 100644
--- a/src/gpu/GrAtlas.cpp
+++ b/src/gpu/GrAtlas.cpp
@@ -255,7 +255,7 @@ GrPlot* GrAtlas::addToAtlas(ClientPlotUsage* usage,
return NULL;
}
-void GrAtlas::removePlot(ClientPlotUsage* usage, const GrPlot* plot) {
+void GrAtlas::RemovePlot(ClientPlotUsage* usage, const GrPlot* plot) {
int index = usage->fPlots.find(const_cast<GrPlot*>(plot));
if (index >= 0) {
usage->fPlots.remove(index);
« no previous file with comments | « src/gpu/GrAtlas.h ('k') | src/gpu/GrTextStrike.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698