aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/effects/GrConvolutionEffect.cpp
diff options
context:
space:
mode:
authorGravatar egdaniel <egdaniel@google.com>2015-04-29 11:54:42 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-04-29 11:54:42 -0700
commit29bee0fe657fabf7c396502b69c9167fba13eaaa (patch)
tree40519dbc2f10a16f9c72529a5cf2470d1d15e0b0 /src/gpu/effects/GrConvolutionEffect.cpp
parent1d4ec0a1ad4998c32c6a28ff4b85000553ff686d (diff)
Make XPFragmentBuilder only Builder with access to DstCopy.
Plus a bunch of renaming. BUG=skia: Review URL: https://codereview.chromium.org/1110033004
Diffstat (limited to 'src/gpu/effects/GrConvolutionEffect.cpp')
-rw-r--r--src/gpu/effects/GrConvolutionEffect.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpu/effects/GrConvolutionEffect.cpp b/src/gpu/effects/GrConvolutionEffect.cpp
index 336778e037..3d96a00e9d 100644
--- a/src/gpu/effects/GrConvolutionEffect.cpp
+++ b/src/gpu/effects/GrConvolutionEffect.cpp
@@ -69,7 +69,7 @@ void GrGLConvolutionEffect::emitCode(GrGLFPBuilder* builder,
kFloat_GrSLType, kDefault_GrSLPrecision,
"Kernel", this->width());
- GrGLFPFragmentBuilder* fsBuilder = builder->getFragmentShaderBuilder();
+ GrGLFragmentBuilder* fsBuilder = builder->getFragmentShaderBuilder();
SkString coords2D = fsBuilder->ensureFSCoords2D(coords, 0);
fsBuilder->codeAppendf("\t\t%s = vec4(0, 0, 0, 0);\n", outputColor);