diff options
author | skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-04-26 07:00:58 +0000 |
---|---|---|
committer | skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-04-26 07:00:58 +0000 |
commit | 2cf444f7040614b43af67e368f3aa636ebeaa45a (patch) | |
tree | 9d6941ec5d34c48d2d444b948170d32216cdd37c /include/gpu | |
parent | 28552e12a019bf5ae55c9e8602bbe216562d7a3e (diff) |
Sanitizing source files in Skia_Periodic_House_Keeping
git-svn-id: http://skia.googlecode.com/svn/trunk@8873 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/gpu')
-rw-r--r-- | include/gpu/GrEffectStage.h | 8 | ||||
-rw-r--r-- | include/gpu/GrOvalRenderer.h | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/include/gpu/GrEffectStage.h b/include/gpu/GrEffectStage.h index 7548258738..07294e1ce5 100644 --- a/include/gpu/GrEffectStage.h +++ b/include/gpu/GrEffectStage.h @@ -70,9 +70,9 @@ public: * @param matrix The transformation from the old coord system in which geometry is specified * to the new one from which it will actually be drawn. */ - void localCoordChange(const SkMatrix& matrix) { + void localCoordChange(const SkMatrix& matrix) { if (fCoordChangeMatrixSet) { - fCoordChangeMatrix.preConcat(matrix); + fCoordChangeMatrix.preConcat(matrix); } else { fCoordChangeMatrixSet = true; fCoordChangeMatrix = matrix; @@ -205,11 +205,11 @@ public: * Gets the matrix representing all changes of coordinate system since the GrEffect was * installed in the stage. */ - const SkMatrix& getCoordChangeMatrix() const { + const SkMatrix& getCoordChangeMatrix() const { if (fCoordChangeMatrixSet) { return fCoordChangeMatrix; } else { - return SkMatrix::I(); + return SkMatrix::I(); } } diff --git a/include/gpu/GrOvalRenderer.h b/include/gpu/GrOvalRenderer.h index 68e6070b45..0f6809db98 100644 --- a/include/gpu/GrOvalRenderer.h +++ b/include/gpu/GrOvalRenderer.h @@ -43,9 +43,9 @@ private: const SkStrokeRec& stroke); GrIndexBuffer* rRectIndexBuffer(GrGpu* gpu); - + GrIndexBuffer* fRRectIndexBuffer; - + typedef GrRefCnt INHERITED; }; |