| Index: include/core/SkShader.h
|
| diff --git a/include/core/SkShader.h b/include/core/SkShader.h
|
| index 5301f46a0ab8bede92f4eb138bee1f7fe15856c3..69037d95f663bc34d597a2014754a0859c3cfb78 100644
|
| --- a/include/core/SkShader.h
|
| +++ b/include/core/SkShader.h
|
| @@ -316,17 +316,20 @@ public:
|
| const SkMatrix* viewMatrix,
|
| const SkMatrix* localMatrix,
|
| SkFilterQuality filterQuality,
|
| + SkColorSpace* dstColorSpace,
|
| SkSourceGammaTreatment gammaTreatment)
|
| : fContext(context)
|
| , fViewMatrix(viewMatrix)
|
| , fLocalMatrix(localMatrix)
|
| , fFilterQuality(filterQuality)
|
| + , fDstColorSpace(dstColorSpace)
|
| , fGammaTreatment(gammaTreatment) {}
|
|
|
| GrContext* fContext;
|
| const SkMatrix* fViewMatrix;
|
| const SkMatrix* fLocalMatrix;
|
| SkFilterQuality fFilterQuality;
|
| + SkColorSpace* fDstColorSpace;
|
| SkSourceGammaTreatment fGammaTreatment;
|
| };
|
|
|
|
|