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

Unified Diff: src/gpu/batches/GrRectBatchFactory.h

Issue 1319733002: Rename GrBWFillRectBatch to GrNonAAFillRectBAtch (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: tweaks Created 5 years, 4 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/batches/GrNonAAFillRectBatch.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/gpu/batches/GrRectBatchFactory.h
diff --git a/src/gpu/batches/GrRectBatchFactory.h b/src/gpu/batches/GrRectBatchFactory.h
index 195a2b9e58be317d2ec12550b2f67e9df31099d4..3de8c020f25ab31ed0eb0ab6b906b14a3ab59956 100644
--- a/src/gpu/batches/GrRectBatchFactory.h
+++ b/src/gpu/batches/GrRectBatchFactory.h
@@ -9,8 +9,8 @@
#define GrRectBatchFactory_DEFINED
#include "GrAAFillRectBatch.h"
-#include "GrBWFillRectBatch.h"
#include "GrColor.h"
+#include "GrNonAAFillRectBatch.h"
class GrBatch;
class SkMatrix;
@@ -27,7 +27,7 @@ inline GrDrawBatch* CreateNonAAFill(GrColor color,
const SkRect& rect,
const SkRect* localRect,
const SkMatrix* localMatrix) {
- return GrBWFillRectBatch::Create(color, viewMatrix, rect, localRect, localMatrix);
+ return GrNonAAFillRectBatch::Create(color, viewMatrix, rect, localRect, localMatrix);
}
inline GrDrawBatch* CreateAAFill(GrColor color,
« no previous file with comments | « src/gpu/batches/GrNonAAFillRectBatch.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698