Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: src/image/SkImageShader.h

Issue 2041113004: sk_sp for gpu. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Reserve correctly. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/gpu/effects/GrYUVEffect.cpp ('k') | src/image/SkImageShader.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2015 Google Inc. 2 * Copyright 2015 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 SkImageShader_DEFINED 8 #ifndef SkImageShader_DEFINED
9 #define SkImageShader_DEFINED 9 #define SkImageShader_DEFINED
10 10
11 #include "SkImage.h" 11 #include "SkImage.h"
12 #include "SkShader.h" 12 #include "SkShader.h"
13 13
14 class SkImageShader : public SkShader { 14 class SkImageShader : public SkShader {
15 public: 15 public:
16 static sk_sp<SkShader> Make(const SkImage*, TileMode tx, TileMode ty, 16 static sk_sp<SkShader> Make(const SkImage*, TileMode tx, TileMode ty,
17 const SkMatrix* localMatrix); 17 const SkMatrix* localMatrix);
18 18
19 bool isOpaque() const override; 19 bool isOpaque() const override;
20 20
21 SK_TO_STRING_OVERRIDE() 21 SK_TO_STRING_OVERRIDE()
22 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkImageShader) 22 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkImageShader)
23 23
24 #if SK_SUPPORT_GPU 24 #if SK_SUPPORT_GPU
25 const GrFragmentProcessor* asFragmentProcessor(GrContext*, const SkMatrix& v iewM, 25 sk_sp<GrFragmentProcessor> asFragmentProcessor(GrContext*, const SkMatrix& v iewM,
26 const SkMatrix*, SkFilterQual ity, 26 const SkMatrix*, SkFilterQual ity,
27 SkSourceGammaTreatment) const override; 27 SkSourceGammaTreatment) const override;
28 #endif 28 #endif
29 29
30 protected: 30 protected:
31 void flatten(SkWriteBuffer&) const override; 31 void flatten(SkWriteBuffer&) const override;
32 size_t onContextSize(const ContextRec&) const override; 32 size_t onContextSize(const ContextRec&) const override;
33 Context* onCreateContext(const ContextRec&, void* storage) const override; 33 Context* onCreateContext(const ContextRec&, void* storage) const override;
34 34
35 SkAutoTUnref<const SkImage> fImage; 35 SkAutoTUnref<const SkImage> fImage;
36 const TileMode fTileModeX; 36 const TileMode fTileModeX;
37 const TileMode fTileModeY; 37 const TileMode fTileModeY;
38 38
39 private: 39 private:
40 SkImageShader(const SkImage*, TileMode tx, TileMode ty, const SkMatrix* loca lMatrix); 40 SkImageShader(const SkImage*, TileMode tx, TileMode ty, const SkMatrix* loca lMatrix);
41 41
42 typedef SkShader INHERITED; 42 typedef SkShader INHERITED;
43 }; 43 };
44 44
45 #endif 45 #endif
OLDNEW
« no previous file with comments | « src/gpu/effects/GrYUVEffect.cpp ('k') | src/image/SkImageShader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698