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

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

Issue 1217573002: remove SkInstCnt (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Created 5 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/pdf/SkPDFGraphicState.h ('k') | src/pdf/SkPDFStream.h » ('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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }; 51 };
52 52
53 class SkPDFFunctionShader : public SkPDFDict { 53 class SkPDFFunctionShader : public SkPDFDict {
54 SK_DECLARE_INST_COUNT(SkPDFFunctionShader); 54
55 55
56 public: 56 public:
57 static SkPDFFunctionShader* Create(SkPDFCanon*, 57 static SkPDFFunctionShader* Create(SkPDFCanon*,
58 SkAutoTDelete<SkPDFShader::State>*); 58 SkAutoTDelete<SkPDFShader::State>*);
59 virtual ~SkPDFFunctionShader(); 59 virtual ~SkPDFFunctionShader();
60 bool equals(const SkPDFShader::State&) const; 60 bool equals(const SkPDFShader::State&) const;
61 61
62 private: 62 private:
63 SkAutoTDelete<const SkPDFShader::State> fShaderState; 63 SkAutoTDelete<const SkPDFShader::State> fShaderState;
64 SkPDFFunctionShader(SkPDFShader::State*); 64 SkPDFFunctionShader(SkPDFShader::State*);
(...skipping 27 matching lines...) Expand all
92 virtual ~SkPDFImageShader(); 92 virtual ~SkPDFImageShader();
93 bool equals(const SkPDFShader::State&) const; 93 bool equals(const SkPDFShader::State&) const;
94 94
95 private: 95 private:
96 SkAutoTDelete<const SkPDFShader::State> fShaderState; 96 SkAutoTDelete<const SkPDFShader::State> fShaderState;
97 SkPDFImageShader(SkPDFShader::State*); 97 SkPDFImageShader(SkPDFShader::State*);
98 typedef SkPDFStream INHERITED; 98 typedef SkPDFStream INHERITED;
99 }; 99 };
100 100
101 #endif 101 #endif
OLDNEW
« no previous file with comments | « src/pdf/SkPDFGraphicState.h ('k') | src/pdf/SkPDFStream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698