Chromium Code Reviews| Index: src/gpu/gl/GrGLPrimitiveProcessor.h |
| diff --git a/src/gpu/gl/GrGLPrimitiveProcessor.h b/src/gpu/gl/GrGLPrimitiveProcessor.h |
| index 474b5f460c08747ca60235fdc4cf001d7fdf2b6e..056225ad29aef7c6aa823790c7c3ca6478adc495 100644 |
| --- a/src/gpu/gl/GrGLPrimitiveProcessor.h |
| +++ b/src/gpu/gl/GrGLPrimitiveProcessor.h |
| @@ -31,7 +31,6 @@ public: |
| struct EmitArgs { |
| EmitArgs(GrGLGPBuilder* pb, |
| const GrPrimitiveProcessor& gp, |
| - const GrBatchTracker& bt, |
| const char* outputColor, |
| const char* outputCoverage, |
| const TextureSamplerArray& samplers, |
| @@ -39,7 +38,6 @@ public: |
| TransformsOut* transformsOut) |
| : fPB(pb) |
| , fGP(gp) |
| - , fBT(bt) |
| , fOutputColor(outputColor) |
| , fOutputCoverage(outputCoverage) |
| , fSamplers(samplers) |
| @@ -47,7 +45,6 @@ public: |
| , fTransformsOut(transformsOut) {} |
| GrGLGPBuilder* fPB; |
| const GrPrimitiveProcessor& fGP; |
| - const GrBatchTracker& fBT; |
| const char* fOutputColor; |
| const char* fOutputCoverage; |
| const TextureSamplerArray& fSamplers; |
| @@ -69,8 +66,7 @@ public: |
| GrGLPrimitiveProcessor and to have an identical processor key as the one that created this |
| GrGLPrimitiveProcessor. */ |
| virtual void setData(const GrGLProgramDataManager&, |
|
bsalomon
2015/09/10 18:55:32
one line?
joshualitt
2015/09/10 20:08:06
Acknowledged.
|
| - const GrPrimitiveProcessor&, |
| - const GrBatchTracker&) = 0; |
| + const GrPrimitiveProcessor&) = 0; |
| static SkMatrix GetTransformMatrix(const SkMatrix& localMatrix, const GrCoordTransform&); |