aboutsummaryrefslogtreecommitdiff
path: root/src/gpu/ganesh/effects/GrAtlasedShaderHelpers.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/ganesh/effects/GrAtlasedShaderHelpers.h')
-rw-r--r--src/gpu/ganesh/effects/GrAtlasedShaderHelpers.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gpu/ganesh/effects/GrAtlasedShaderHelpers.h b/src/gpu/ganesh/effects/GrAtlasedShaderHelpers.h
index 2a2fce7782..1e9ae1b5f1 100644
--- a/src/gpu/ganesh/effects/GrAtlasedShaderHelpers.h
+++ b/src/gpu/ganesh/effects/GrAtlasedShaderHelpers.h
@@ -90,11 +90,13 @@ static inline void append_multitexture_lookup(GrGeometryProcessor::ProgramImpl::
// conditionally load from the indexed texture sampler
for (int i = 0; i < numTextureSamplers-1; ++i) {
args.fFragBuilder->codeAppendf("if (%s == %d) { %s = ", texIdx.fsIn(), i, colorName);
- args.fFragBuilder->appendTextureLookup(args.fTexSamplers[i], coordName);
+ args.fFragBuilder->appendTextureLookup(args.fTexSamplers[i],
+ coordName);
args.fFragBuilder->codeAppend("; } else ");
}
args.fFragBuilder->codeAppendf("{ %s = ", colorName);
- args.fFragBuilder->appendTextureLookup(args.fTexSamplers[numTextureSamplers - 1], coordName);
+ args.fFragBuilder->appendTextureLookup(args.fTexSamplers[numTextureSamplers - 1],
+ coordName);
args.fFragBuilder->codeAppend("; }");
}