blob: 519d6dbeb5663c653583b567fdab387a9a4f81f6 [file] [log] [blame]
bsalomon@google.comb505a122012-05-31 18:40:36 +00001/*
2 * Copyright 2012 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef Gr1DKernelEffect_DEFINED
9#define Gr1DKernelEffect_DEFINED
10
tomhudson@google.comd0c1a062012-07-12 17:23:52 +000011#include "GrSingleTextureEffect.h"
bsalomon@google.comb4a55b72012-11-02 20:45:37 +000012#include "SkMatrix.h"
bsalomon@google.comb505a122012-05-31 18:40:36 +000013
14/**
15 * Base class for 1D kernel effects. The kernel operates either in X or Y and
16 * has a pixel radius. The kernel is specified in the src texture's space
17 * and the kernel center is pinned to a texel's center. The radius specifies
18 * the number of texels on either side of the center texel in X or Y that are
19 * read. Since the center pixel is also read, the total width is one larger than
20 * two times the radius.
21 */
bsalomon@google.comb4a55b72012-11-02 20:45:37 +000022
tomhudson@google.comd0c1a062012-07-12 17:23:52 +000023class Gr1DKernelEffect : public GrSingleTextureEffect {
bsalomon@google.comb505a122012-05-31 18:40:36 +000024
25public:
26 enum Direction {
27 kX_Direction,
28 kY_Direction,
29 };
30
bsalomon4a339522015-10-06 08:40:50 -070031 Gr1DKernelEffect(GrTexture* texture,
tomhudson@google.comd0c1a062012-07-12 17:23:52 +000032 Direction direction,
bsalomon@google.comb505a122012-05-31 18:40:36 +000033 int radius)
bsalomon4a339522015-10-06 08:40:50 -070034 : INHERITED(texture, GrCoordTransform::MakeDivByTextureWHMatrix(texture))
tomhudson@google.comd0c1a062012-07-12 17:23:52 +000035 , fDirection(direction)
bsalomon@google.comb505a122012-05-31 18:40:36 +000036 , fRadius(radius) {}
37
38 virtual ~Gr1DKernelEffect() {};
39
40 static int WidthFromRadius(int radius) { return 2 * radius + 1; }
41
42 int radius() const { return fRadius; }
43 int width() const { return WidthFromRadius(fRadius); }
44 Direction direction() const { return fDirection; }
45
robertphillipse004bfc2015-11-16 09:06:59 -080046 SkString dumpInfo() const override {
47 SkString str;
48 str.appendf("Direction: %s, Radius: %d ", kX_Direction == fDirection ? "X" : "Y", fRadius);
49 str.append(INHERITED::dumpInfo());
50 return str;
51 }
52
bsalomon@google.comb505a122012-05-31 18:40:36 +000053private:
54
55 Direction fDirection;
56 int fRadius;
57
tomhudson@google.comd0c1a062012-07-12 17:23:52 +000058 typedef GrSingleTextureEffect INHERITED;
bsalomon@google.comb505a122012-05-31 18:40:36 +000059};
60
61#endif