Index: src/gpu/glsl/GrGLSLPrimitiveProcessor.h |
diff --git a/src/gpu/glsl/GrGLSLPrimitiveProcessor.h b/src/gpu/glsl/GrGLSLPrimitiveProcessor.h |
index a94099656b9286468ba51fb950d5af2b29f24c7d..d7260276867aa7f474d1f3c5c364158e4a1a55b4 100644 |
--- a/src/gpu/glsl/GrGLSLPrimitiveProcessor.h |
+++ b/src/gpu/glsl/GrGLSLPrimitiveProcessor.h |
@@ -42,7 +42,6 @@ |
const GrPrimitiveProcessor& gp, |
const char* outputColor, |
const char* outputCoverage, |
- const char* distanceVectorName, |
const SamplerHandle* texSamplers, |
const SamplerHandle* bufferSamplers, |
const TransformsIn& transformsIn, |
@@ -55,7 +54,6 @@ |
, fGP(gp) |
, fOutputColor(outputColor) |
, fOutputCoverage(outputCoverage) |
- , fDistanceVectorName(distanceVectorName) |
, fTexSamplers(texSamplers) |
, fBufferSamplers(bufferSamplers) |
, fTransformsIn(transformsIn) |
@@ -68,7 +66,6 @@ |
const GrPrimitiveProcessor& fGP; |
const char* fOutputColor; |
const char* fOutputCoverage; |
- const char* fDistanceVectorName; |
const SamplerHandle* fTexSamplers; |
const SamplerHandle* fBufferSamplers; |
const TransformsIn& fTransformsIn; |
@@ -80,6 +77,7 @@ |
* This allows the effect subclass to emit vertex code. |
*/ |
virtual void emitCode(EmitArgs&) = 0; |
+ |
/** A GrGLSLPrimitiveProcessor instance can be reused with any GrGLSLPrimitiveProcessor that |
produces the same stage key; this function reads data from a GrGLSLPrimitiveProcessor and |