Chromium Code Reviews| Index: src/gpu/GrAAConvexPathRenderer.cpp |
| diff --git a/src/gpu/GrAAConvexPathRenderer.cpp b/src/gpu/GrAAConvexPathRenderer.cpp |
| index 311010fcd9e15dc571b9daf856950351f593b76f..6d69823caf53e8052b32c4bc2be2d0ac6aa40d20 100644 |
| --- a/src/gpu/GrAAConvexPathRenderer.cpp |
| +++ b/src/gpu/GrAAConvexPathRenderer.cpp |
| @@ -575,7 +575,8 @@ public: |
| const GrGLCaps&, |
| GrProcessorKeyBuilder* b) { |
| const BatchTracker& local = bt.cast<BatchTracker>(); |
| - b->add32(local.fInputColorType); |
| + b->add32((local.fInputColorType << 16) | |
|
bsalomon
2014/12/22 15:33:53
The fact that we have to do this all over the plac
|
| + (local.fUsesLocalCoords && gp.localMatrix().hasPerspective() ? 0x1 : 0x0)); |
| } |
| virtual void setData(const GrGLProgramDataManager& pdman, |