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

Side by Side Diff: src/pdf/SkPDFShader.h

Issue 1788263002: SkPDF: remove all globally references SkPDFObjects (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: add explanatory comments Created 4 years, 9 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/pdf/SkPDFGraphicState.cpp ('k') | src/pdf/SkPDFShader.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 2011 Google Inc. 3 * Copyright 2011 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 9
10 #ifndef SkPDFShader_DEFINED 10 #ifndef SkPDFShader_DEFINED
(...skipping 30 matching lines...) Expand all
41 * already applied). 41 * already applied).
42 * @param rasterScale Additional scale to be applied for early 42 * @param rasterScale Additional scale to be applied for early
43 * rasterization. 43 * rasterization.
44 */ 44 */
45 static SkPDFObject* GetPDFShader(SkPDFCanon* canon, 45 static SkPDFObject* GetPDFShader(SkPDFCanon* canon,
46 SkScalar dpi, 46 SkScalar dpi,
47 const SkShader& shader, 47 const SkShader& shader,
48 const SkMatrix& matrix, 48 const SkMatrix& matrix,
49 const SkIRect& surfaceBBox, 49 const SkIRect& surfaceBBox,
50 SkScalar rasterScale); 50 SkScalar rasterScale);
51
52 static sk_sp<SkPDFArray> MakeRangeObject();
51 }; 53 };
52 54
53 class SkPDFFunctionShader final : public SkPDFDict { 55 class SkPDFFunctionShader final : public SkPDFDict {
54 public: 56 public:
55 static SkPDFFunctionShader* Create(SkPDFCanon*, 57 static SkPDFFunctionShader* Create(SkPDFCanon*,
56 SkAutoTDelete<SkPDFShader::State>*); 58 SkAutoTDelete<SkPDFShader::State>*);
57 virtual ~SkPDFFunctionShader(); 59 virtual ~SkPDFFunctionShader();
58 bool equals(const SkPDFShader::State&) const; 60 bool equals(const SkPDFShader::State&) const;
59 61
60 private: 62 private:
(...skipping 29 matching lines...) Expand all
90 virtual ~SkPDFImageShader(); 92 virtual ~SkPDFImageShader();
91 bool equals(const SkPDFShader::State&) const; 93 bool equals(const SkPDFShader::State&) const;
92 94
93 private: 95 private:
94 SkAutoTDelete<const SkPDFShader::State> fShaderState; 96 SkAutoTDelete<const SkPDFShader::State> fShaderState;
95 SkPDFImageShader(SkPDFShader::State*); 97 SkPDFImageShader(SkPDFShader::State*);
96 typedef SkPDFStream INHERITED; 98 typedef SkPDFStream INHERITED;
97 }; 99 };
98 100
99 #endif 101 #endif
OLDNEW
« no previous file with comments | « src/pdf/SkPDFGraphicState.cpp ('k') | src/pdf/SkPDFShader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698