| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2014 Google Inc. | 2 * Copyright 2014 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #ifndef SkLocalMatrixShader_DEFINED | 8 #ifndef SkLocalMatrixShader_DEFINED |
| 9 #define SkLocalMatrixShader_DEFINED | 9 #define SkLocalMatrixShader_DEFINED |
| 10 | 10 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 return fProxyShader->asABitmap(bitmap, matrix, mode); | 28 return fProxyShader->asABitmap(bitmap, matrix, mode); |
| 29 } | 29 } |
| 30 | 30 |
| 31 virtual GradientType asAGradient(GradientInfo* info) const SK_OVERRIDE { | 31 virtual GradientType asAGradient(GradientInfo* info) const SK_OVERRIDE { |
| 32 return fProxyShader->asAGradient(info); | 32 return fProxyShader->asAGradient(info); |
| 33 } | 33 } |
| 34 | 34 |
| 35 #if SK_SUPPORT_GPU | 35 #if SK_SUPPORT_GPU |
| 36 | 36 |
| 37 virtual bool asNewEffect(GrContext* context, const SkPaint& paint, const SkM
atrix* localMatrix, | 37 virtual bool asNewEffect(GrContext* context, const SkPaint& paint, const SkM
atrix* localMatrix, |
| 38 GrColor* grColor, GrEffectRef** grEffect) const SK_
OVERRIDE { | 38 GrColor* grColor, GrEffect** grEffect) const SK_OVE
RRIDE { |
| 39 SkMatrix tmp = fProxyLocalMatrix; | 39 SkMatrix tmp = fProxyLocalMatrix; |
| 40 if (localMatrix) { | 40 if (localMatrix) { |
| 41 tmp.preConcat(*localMatrix); | 41 tmp.preConcat(*localMatrix); |
| 42 } | 42 } |
| 43 return fProxyShader->asNewEffect(context, paint, &tmp, grColor, grEffect
); | 43 return fProxyShader->asNewEffect(context, paint, &tmp, grColor, grEffect
); |
| 44 } | 44 } |
| 45 | 45 |
| 46 #else | 46 #else |
| 47 | 47 |
| 48 virtual bool asNewEffect(GrContext* context, const SkPaint& paint, const SkM
atrix* localMatrix, | 48 virtual bool asNewEffect(GrContext* context, const SkPaint& paint, const SkM
atrix* localMatrix, |
| (...skipping 20 matching lines...) Expand all Loading... |
| 69 virtual Context* onCreateContext(const ContextRec&, void*) const SK_OVERRIDE
; | 69 virtual Context* onCreateContext(const ContextRec&, void*) const SK_OVERRIDE
; |
| 70 | 70 |
| 71 private: | 71 private: |
| 72 SkAutoTUnref<SkShader> fProxyShader; | 72 SkAutoTUnref<SkShader> fProxyShader; |
| 73 SkMatrix fProxyLocalMatrix; | 73 SkMatrix fProxyLocalMatrix; |
| 74 | 74 |
| 75 typedef SkShader INHERITED; | 75 typedef SkShader INHERITED; |
| 76 }; | 76 }; |
| 77 | 77 |
| 78 #endif | 78 #endif |
| OLD | NEW |