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, |