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

Side by Side Diff: src/gpu/effects/Gr1DKernelEffect.h

Issue 2154753003: Introduce GrColorSpaceXform, for gamut conversion on textures (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: More progress & refactoring Created 4 years, 5 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/SkGpuDevice.cpp ('k') | src/gpu/effects/GrBicubicEffect.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 * Copyright 2012 Google Inc. 2 * Copyright 2012 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 Gr1DKernelEffect_DEFINED 8 #ifndef Gr1DKernelEffect_DEFINED
9 #define Gr1DKernelEffect_DEFINED 9 #define Gr1DKernelEffect_DEFINED
10 10
(...skipping 13 matching lines...) Expand all
24 24
25 public: 25 public:
26 enum Direction { 26 enum Direction {
27 kX_Direction, 27 kX_Direction,
28 kY_Direction, 28 kY_Direction,
29 }; 29 };
30 30
31 Gr1DKernelEffect(GrTexture* texture, 31 Gr1DKernelEffect(GrTexture* texture,
32 Direction direction, 32 Direction direction,
33 int radius) 33 int radius)
34 : INHERITED(texture, GrCoordTransform::MakeDivByTextureWHMatrix(texture) ) 34 : INHERITED(texture, nullptr, GrCoordTransform::MakeDivByTextureWHMatrix (texture))
35 , fDirection(direction) 35 , fDirection(direction)
36 , fRadius(radius) {} 36 , fRadius(radius) {}
37 37
38 virtual ~Gr1DKernelEffect() {}; 38 virtual ~Gr1DKernelEffect() {};
39 39
40 static int WidthFromRadius(int radius) { return 2 * radius + 1; } 40 static int WidthFromRadius(int radius) { return 2 * radius + 1; }
41 41
42 int radius() const { return fRadius; } 42 int radius() const { return fRadius; }
43 int width() const { return WidthFromRadius(fRadius); } 43 int width() const { return WidthFromRadius(fRadius); }
44 Direction direction() const { return fDirection; } 44 Direction direction() const { return fDirection; }
45 45
46 SkString dumpInfo() const override { 46 SkString dumpInfo() const override {
47 SkString str; 47 SkString str;
48 str.appendf("Direction: %s, Radius: %d ", kX_Direction == fDirection ? " X" : "Y", fRadius); 48 str.appendf("Direction: %s, Radius: %d ", kX_Direction == fDirection ? " X" : "Y", fRadius);
49 str.append(INHERITED::dumpInfo()); 49 str.append(INHERITED::dumpInfo());
50 return str; 50 return str;
51 } 51 }
52 52
53 private: 53 private:
54 54
55 Direction fDirection; 55 Direction fDirection;
56 int fRadius; 56 int fRadius;
57 57
58 typedef GrSingleTextureEffect INHERITED; 58 typedef GrSingleTextureEffect INHERITED;
59 }; 59 };
60 60
61 #endif 61 #endif
OLDNEW
« no previous file with comments | « src/gpu/SkGpuDevice.cpp ('k') | src/gpu/effects/GrBicubicEffect.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698