| 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) |
|
| + (local.fUsesLocalCoords && gp.localMatrix().hasPerspective() ? 0x1 : 0x0));
|
| }
|
|
|
| virtual void setData(const GrGLProgramDataManager& pdman,
|
|
|