Index: src/gpu/gl/GrGLPathProcessor.cpp |
diff --git a/src/gpu/gl/GrGLPathProcessor.cpp b/src/gpu/gl/GrGLPathProcessor.cpp |
index bbc3fe5d1d8c23ad6ee71dc58fb531ef8c9e213d..a9710281640eb934cb247194dcfd8458ee2eb357 100644 |
--- a/src/gpu/gl/GrGLPathProcessor.cpp |
+++ b/src/gpu/gl/GrGLPathProcessor.cpp |
@@ -11,7 +11,7 @@ |
#include "GrGLGpu.h" |
#include "GrGLPathRendering.h" |
-GrGLPathProcessor::GrGLPathProcessor(const GrPathProcessor&, const GrBatchTracker&) |
+GrGLPathProcessor::GrGLPathProcessor() |
: fColor(GrColor_ILLEGAL) {} |
void GrGLPathProcessor::emitCode(EmitArgs& args) { |
@@ -40,7 +40,6 @@ void GrGLPathProcessor::emitCode(EmitArgs& args) { |
} |
void GrGLPathProcessor::GenKey(const GrPathProcessor& pathProc, |
- const GrBatchTracker& bt, |
const GrGLSLCaps&, |
GrProcessorKeyBuilder* b) { |
b->add32(SkToInt(pathProc.opts().readsColor()) | |
@@ -48,8 +47,7 @@ void GrGLPathProcessor::GenKey(const GrPathProcessor& pathProc, |
} |
void GrGLPathProcessor::setData(const GrGLProgramDataManager& pdman, |
- const GrPrimitiveProcessor& primProc, |
- const GrBatchTracker& bt) { |
+ const GrPrimitiveProcessor& primProc) { |
const GrPathProcessor& pathProc = primProc.cast<GrPathProcessor>(); |
if (pathProc.opts().readsColor() && pathProc.color() != fColor) { |
GrGLfloat c[4]; |