blob: 9296ecc93ea7bad59e5c48c3e574e07ea52b6896 [file] [log] [blame]
tomhudson@google.comd8f856c2012-05-10 12:13: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#include "GrConvolutionEffect.h"
9#include "gl/GrGLProgramStage.h"
10#include "gl/GrGLSL.h"
11#include "gl/GrGLTexture.h"
12#include "GrProgramStageFactory.h"
13
tomhudson@google.comd8f856c2012-05-10 12:13:36 +000014class GrGLConvolutionEffect : public GrGLProgramStage {
tomhudson@google.comd8f856c2012-05-10 12:13:36 +000015public:
bsalomon@google.com289efe02012-05-21 20:57:59 +000016 GrGLConvolutionEffect(const GrProgramStageFactory& factory,
bsalomon@google.comb505a122012-05-31 18:40:36 +000017 const GrCustomStage& stage);
18
tomhudson@google.com23cb2292012-05-30 18:26:03 +000019 virtual void setupVariables(GrGLShaderBuilder* state,
20 int stage) SK_OVERRIDE;
tomhudson@google.com6a820b62012-05-24 15:10:14 +000021 virtual void emitVS(GrGLShaderBuilder* state,
tomhudson@google.comd8f856c2012-05-10 12:13:36 +000022 const char* vertexCoords) SK_OVERRIDE;
tomhudson@google.com6a820b62012-05-24 15:10:14 +000023 virtual void emitFS(GrGLShaderBuilder* state,
tomhudson@google.comd8f856c2012-05-10 12:13:36 +000024 const char* outputColor,
25 const char* inputColor,
tomhudson@google.com6a820b62012-05-24 15:10:14 +000026 const char* samplerName) SK_OVERRIDE;
bsalomon@google.comb505a122012-05-31 18:40:36 +000027
tomhudson@google.comd8f856c2012-05-10 12:13:36 +000028 virtual void initUniforms(const GrGLInterface*, int programID) SK_OVERRIDE;
29
bsalomon@google.comb505a122012-05-31 18:40:36 +000030 virtual void setData(const GrGLInterface*,
tomhudson@google.com6a820b62012-05-24 15:10:14 +000031 const GrGLTexture&,
bsalomon@google.comb505a122012-05-31 18:40:36 +000032 const GrCustomStage&,
tomhudson@google.com6a820b62012-05-24 15:10:14 +000033 int stageNum) SK_OVERRIDE;
tomhudson@google.comd8f856c2012-05-10 12:13:36 +000034
bsalomon@google.comb505a122012-05-31 18:40:36 +000035 static inline StageKey GenKey(const GrCustomStage&);
tomhudson@google.comd8f856c2012-05-10 12:13:36 +000036
37private:
bsalomon@google.comb505a122012-05-31 18:40:36 +000038 int width() const { return Gr1DKernelEffect::WidthFromRadius(fRadius); }
39
40 int fRadius;
41 const GrGLShaderVar* fKernelVar;
42 GrGLint fKernelLocation;
43 const GrGLShaderVar* fImageIncrementVar;
44 GrGLint fImageIncrementLocation;
tomhudson@google.comd8f856c2012-05-10 12:13:36 +000045
46 typedef GrGLProgramStage INHERITED;
47};
48
bsalomon@google.comb505a122012-05-31 18:40:36 +000049GrGLConvolutionEffect::GrGLConvolutionEffect(const GrProgramStageFactory& factory,
50 const GrCustomStage& stage)
bsalomon@google.com289efe02012-05-21 20:57:59 +000051 : GrGLProgramStage(factory)
52 , fKernelVar(NULL)
tomhudson@google.comd8f856c2012-05-10 12:13:36 +000053 , fKernelLocation(0)
bsalomon@google.comb505a122012-05-31 18:40:36 +000054 , fImageIncrementVar(NULL)
bsalomon@google.comae4f96a2012-05-18 19:54:48 +000055 , fImageIncrementLocation(0) {
bsalomon@google.comb505a122012-05-31 18:40:36 +000056 const GrConvolutionEffect& c =
57 static_cast<const GrConvolutionEffect&>(stage);
58 fRadius = c.radius();
tomhudson@google.comd8f856c2012-05-10 12:13:36 +000059}
60
tomhudson@google.com23cb2292012-05-30 18:26:03 +000061void GrGLConvolutionEffect::setupVariables(GrGLShaderBuilder* state,
62 int stage) {
63 fImageIncrementVar = &state->addUniform(
64 GrGLShaderBuilder::kBoth_VariableLifetime,
65 kVec2f_GrSLType, "uImageIncrement", stage);
66 fKernelVar = &state->addUniform(
67 GrGLShaderBuilder::kFragment_VariableLifetime,
bsalomon@google.comb505a122012-05-31 18:40:36 +000068 kFloat_GrSLType, "uKernel", stage, this->width());
tomhudson@google.comd8f856c2012-05-10 12:13:36 +000069
70 fImageIncrementLocation = kUseUniform;
tomhudson@google.comd8f856c2012-05-10 12:13:36 +000071 fKernelLocation = kUseUniform;
tomhudson@google.comd8f856c2012-05-10 12:13:36 +000072}
73
tomhudson@google.com6a820b62012-05-24 15:10:14 +000074void GrGLConvolutionEffect::emitVS(GrGLShaderBuilder* state,
bsalomon@google.comb505a122012-05-31 18:40:36 +000075 const char* vertexCoords) {
tomhudson@google.com6a820b62012-05-24 15:10:14 +000076 GrStringBuilder* code = &state->fVSCode;
bsalomon@google.comb505a122012-05-31 18:40:36 +000077 code->appendf("\t\t%s -= vec2(%d, %d) * %s;\n",
78 vertexCoords, fRadius, fRadius,
tomhudson@google.comd8f856c2012-05-10 12:13:36 +000079 fImageIncrementVar->getName().c_str());
tomhudson@google.comd8f856c2012-05-10 12:13:36 +000080}
81
tomhudson@google.com6a820b62012-05-24 15:10:14 +000082void GrGLConvolutionEffect::emitFS(GrGLShaderBuilder* state,
bsalomon@google.comb505a122012-05-31 18:40:36 +000083 const char* outputColor,
84 const char* inputColor,
85 const char* samplerName) {
tomhudson@google.com6a820b62012-05-24 15:10:14 +000086 GrStringBuilder* code = &state->fFSCode;
tomhudson@google.comd8f856c2012-05-10 12:13:36 +000087 const char* texFunc = "texture2D";
88 bool complexCoord = false;
89
bsalomon@google.comb505a122012-05-31 18:40:36 +000090 state->fFSCode.appendf("\t\tvec4 sum = vec4(0, 0, 0, 0);\n");
91
92 code->appendf("\t\tvec2 coord = %s;\n", state->fSampleCoords.c_str());
93 code->appendf("\t\tfor (int i = 0; i < %d; i++) {\n", this->width());
tomhudson@google.comd8f856c2012-05-10 12:13:36 +000094
95 // Creates the string "kernel[i]" with workarounds for
96 // possible driver bugs
97 GrStringBuilder kernelIndex;
98 fKernelVar->appendArrayAccess("i", &kernelIndex);
bsalomon@google.comb505a122012-05-31 18:40:36 +000099 state->fFSCode.appendf("\t\t\tsum += ");
tomhudson@google.com52598142012-05-24 17:44:30 +0000100 state->emitTextureLookup(samplerName, "coord");
bsalomon@google.comb505a122012-05-31 18:40:36 +0000101 state->fFSCode.appendf(" * %s;\n", kernelIndex.c_str());
tomhudson@google.comd8f856c2012-05-10 12:13:36 +0000102
103 code->appendf("\t\t\tcoord += %s;\n",
104 fImageIncrementVar->getName().c_str());
105 code->appendf("\t\t}\n");
bsalomon@google.comb505a122012-05-31 18:40:36 +0000106
107 state->fFSCode.appendf("\t\t%s = sum%s;\n",
108 outputColor,
109 state->fModulate.c_str());
tomhudson@google.comd8f856c2012-05-10 12:13:36 +0000110}
111
112void GrGLConvolutionEffect::initUniforms(const GrGLInterface* gl,
tomhudson@google.comf1d88062012-05-10 12:43:21 +0000113 int programID) {
tomhudson@google.comd8f856c2012-05-10 12:13:36 +0000114 GR_GL_CALL_RET(gl, fImageIncrementLocation,
115 GetUniformLocation(programID,
116 fImageIncrementVar->getName().c_str()));
bsalomon@google.comb505a122012-05-31 18:40:36 +0000117 GR_GL_CALL_RET(gl, fKernelLocation,
118 GetUniformLocation(programID, fKernelVar->getName().c_str()));
tomhudson@google.comd8f856c2012-05-10 12:13:36 +0000119}
120
121void GrGLConvolutionEffect::setData(const GrGLInterface* gl,
tomhudson@google.com6a820b62012-05-24 15:10:14 +0000122 const GrGLTexture& texture,
bsalomon@google.comb505a122012-05-31 18:40:36 +0000123 const GrCustomStage& data,
tomhudson@google.com6a820b62012-05-24 15:10:14 +0000124 int stageNum) {
bsalomon@google.comb505a122012-05-31 18:40:36 +0000125 const GrConvolutionEffect& conv =
126 static_cast<const GrConvolutionEffect&>(data);
127 // the code we generated was for a specific kernel radius
128 GrAssert(conv.radius() == fRadius);
tomhudson@google.comd8f856c2012-05-10 12:13:36 +0000129 float imageIncrement[2] = { 0 };
bsalomon@google.comb505a122012-05-31 18:40:36 +0000130 switch (conv.direction()) {
131 case Gr1DKernelEffect::kX_Direction:
tomhudson@google.com6a820b62012-05-24 15:10:14 +0000132 imageIncrement[0] = 1.0f / texture.width();
tomhudson@google.comd8f856c2012-05-10 12:13:36 +0000133 break;
bsalomon@google.comb505a122012-05-31 18:40:36 +0000134 case Gr1DKernelEffect::kY_Direction:
135 imageIncrement[1] = 1.0f / texture.height();
tomhudson@google.comd8f856c2012-05-10 12:13:36 +0000136 break;
137 default:
138 GrCrash("Unknown filter direction.");
139 }
140 GR_GL_CALL(gl, Uniform2fv(fImageIncrementLocation, 1, imageIncrement));
bsalomon@google.comb505a122012-05-31 18:40:36 +0000141
142 GR_GL_CALL(gl, Uniform1fv(fKernelLocation, this->width(), conv.kernel()));
tomhudson@google.comd8f856c2012-05-10 12:13:36 +0000143}
144
bsalomon@google.comae4f96a2012-05-18 19:54:48 +0000145GrGLProgramStage::StageKey GrGLConvolutionEffect::GenKey(
bsalomon@google.comb505a122012-05-31 18:40:36 +0000146 const GrCustomStage& s) {
147 return static_cast<const GrConvolutionEffect&>(s).radius();
tomhudson@google.comd8f856c2012-05-10 12:13:36 +0000148}
149
bsalomon@google.comb505a122012-05-31 18:40:36 +0000150///////////////////////////////////////////////////////////////////////////////
tomhudson@google.comd8f856c2012-05-10 12:13:36 +0000151
bsalomon@google.comb505a122012-05-31 18:40:36 +0000152GrConvolutionEffect::GrConvolutionEffect(Direction direction,
153 int radius,
154 const float* kernel)
155 : Gr1DKernelEffect(direction, radius) {
156 GrAssert(radius <= kMaxKernelRadius);
157 int width = this->width();
158 if (NULL != kernel) {
159 for (int i = 0; i < width; i++) {
160 fKernel[i] = kernel[i];
161 }
tomhudson@google.comd8f856c2012-05-10 12:13:36 +0000162 }
163}
164
165GrConvolutionEffect::~GrConvolutionEffect() {
tomhudson@google.comd8f856c2012-05-10 12:13:36 +0000166}
167
bsalomon@google.comae4f96a2012-05-18 19:54:48 +0000168const GrProgramStageFactory& GrConvolutionEffect::getFactory() const {
169 return GrTProgramStageFactory<GrConvolutionEffect>::getInstance();
tomhudson@google.comd8f856c2012-05-10 12:13:36 +0000170}
171
bsalomon@google.comb505a122012-05-31 18:40:36 +0000172bool GrConvolutionEffect::isEqual(const GrCustomStage& sBase) const {
173 const GrConvolutionEffect& s =
174 static_cast<const GrConvolutionEffect&>(sBase);
175 return (this->radius() == s.radius() &&
176 this->direction() == s.direction() &&
177 0 == memcmp(fKernel, s.fKernel, this->width() * sizeof(float)));
tomhudson@google.comd8f856c2012-05-10 12:13:36 +0000178}
179
bsalomon@google.comb505a122012-05-31 18:40:36 +0000180void GrConvolutionEffect::setGaussianKernel(float sigma) {
181 int width = this->width();
182 float sum = 0.0f;
183 float denom = 1.0f / (2.0f * sigma * sigma);
184 for (int i = 0; i < width; ++i) {
185 float x = static_cast<float>(i - this->radius());
186 // Note that the constant term (1/(sqrt(2*pi*sigma^2)) of the Gaussian
187 // is dropped here, since we renormalize the kernel below.
188 fKernel[i] = sk_float_exp(- x * x * denom);
189 sum += fKernel[i];
190 }
191 // Normalize the kernel
192 float scale = 1.0f / sum;
193 for (int i = 0; i < width; ++i) {
194 fKernel[i] *= scale;
195 }
196}