| 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 SkPictureShader_DEFINED | 8 #ifndef SkPictureShader_DEFINED |
| 9 #define SkPictureShader_DEFINED | 9 #define SkPictureShader_DEFINED |
| 10 | 10 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 */ | 21 */ |
| 22 class SkPictureShader : public SkShader { | 22 class SkPictureShader : public SkShader { |
| 23 public: | 23 public: |
| 24 static sk_sp<SkShader> Make(sk_sp<SkPicture>, TileMode, TileMode, const SkMa
trix*, | 24 static sk_sp<SkShader> Make(sk_sp<SkPicture>, TileMode, TileMode, const SkMa
trix*, |
| 25 const SkRect*); | 25 const SkRect*); |
| 26 | 26 |
| 27 SK_TO_STRING_OVERRIDE() | 27 SK_TO_STRING_OVERRIDE() |
| 28 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkPictureShader) | 28 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkPictureShader) |
| 29 | 29 |
| 30 #if SK_SUPPORT_GPU | 30 #if SK_SUPPORT_GPU |
| 31 const GrFragmentProcessor* asFragmentProcessor(GrContext*, | 31 sk_sp<GrFragmentProcessor> asFragmentProcessor(GrContext*, |
| 32 const SkMatrix& viewM, | 32 const SkMatrix& viewM, |
| 33 const SkMatrix*, | 33 const SkMatrix*, |
| 34 SkFilterQuality, | 34 SkFilterQuality, |
| 35 SkSourceGammaTreatment) const
override; | 35 SkSourceGammaTreatment) const
override; |
| 36 #endif | 36 #endif |
| 37 | 37 |
| 38 protected: | 38 protected: |
| 39 SkPictureShader(SkReadBuffer&); | 39 SkPictureShader(SkReadBuffer&); |
| 40 void flatten(SkWriteBuffer&) const override; | 40 void flatten(SkWriteBuffer&) const override; |
| 41 size_t onContextSize(const ContextRec&) const override; | 41 size_t onContextSize(const ContextRec&) const override; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 71 SkShader::Context* fBitmapShaderContext; | 71 SkShader::Context* fBitmapShaderContext; |
| 72 void* fBitmapShaderContextStorage; | 72 void* fBitmapShaderContextStorage; |
| 73 | 73 |
| 74 typedef SkShader::Context INHERITED; | 74 typedef SkShader::Context INHERITED; |
| 75 }; | 75 }; |
| 76 | 76 |
| 77 typedef SkShader INHERITED; | 77 typedef SkShader INHERITED; |
| 78 }; | 78 }; |
| 79 | 79 |
| 80 #endif // SkPictureShader_DEFINED | 80 #endif // SkPictureShader_DEFINED |
| OLD | NEW |