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

Side by Side Diff: src/core/SkPictureShader.h

Issue 1388113002: Bye bye processor data manager (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: remove files Created 5 years, 2 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/core/SkLocalMatrixShader.h ('k') | src/core/SkPictureShader.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 /* 2 /*
3 * Copyright 2014 Google Inc. 3 * Copyright 2014 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 #ifndef SkPictureShader_DEFINED 9 #ifndef SkPictureShader_DEFINED
10 #define SkPictureShader_DEFINED 10 #define SkPictureShader_DEFINED
(...skipping 16 matching lines...) Expand all
27 27
28 size_t contextSize() const override; 28 size_t contextSize() const override;
29 29
30 SK_TO_STRING_OVERRIDE() 30 SK_TO_STRING_OVERRIDE()
31 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkPictureShader) 31 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkPictureShader)
32 32
33 #if SK_SUPPORT_GPU 33 #if SK_SUPPORT_GPU
34 const GrFragmentProcessor* asFragmentProcessor(GrContext*, 34 const GrFragmentProcessor* asFragmentProcessor(GrContext*,
35 const SkMatrix& viewM, 35 const SkMatrix& viewM,
36 const SkMatrix*, 36 const SkMatrix*,
37 SkFilterQuality, 37 SkFilterQuality) const overri de;
38 GrProcessorDataManager*) cons t override;
39 #endif 38 #endif
40 39
41 protected: 40 protected:
42 SkPictureShader(SkReadBuffer&); 41 SkPictureShader(SkReadBuffer&);
43 void flatten(SkWriteBuffer&) const override; 42 void flatten(SkWriteBuffer&) const override;
44 Context* onCreateContext(const ContextRec&, void* storage) const override; 43 Context* onCreateContext(const ContextRec&, void* storage) const override;
45 44
46 private: 45 private:
47 SkPictureShader(const SkPicture*, TileMode, TileMode, const SkMatrix*, const SkRect*); 46 SkPictureShader(const SkPicture*, TileMode, TileMode, const SkMatrix*, const SkRect*);
48 47
(...skipping 23 matching lines...) Expand all
72 SkShader::Context* fBitmapShaderContext; 71 SkShader::Context* fBitmapShaderContext;
73 void* fBitmapShaderContextStorage; 72 void* fBitmapShaderContextStorage;
74 73
75 typedef SkShader::Context INHERITED; 74 typedef SkShader::Context INHERITED;
76 }; 75 };
77 76
78 typedef SkShader INHERITED; 77 typedef SkShader INHERITED;
79 }; 78 };
80 79
81 #endif // SkPictureShader_DEFINED 80 #endif // SkPictureShader_DEFINED
OLDNEW
« no previous file with comments | « src/core/SkLocalMatrixShader.h ('k') | src/core/SkPictureShader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698