aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrPipeline.cpp
diff options
context:
space:
mode:
authorGravatar cdalton <cdalton@nvidia.com>2015-06-08 15:11:04 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-06-08 15:11:04 -0700
commit86ae0a9e465f157eaa263ef7515e10619946ff83 (patch)
tree6dded95e6c4cb77e649a3402183f114e7f08c37d /src/gpu/GrPipeline.cpp
parentd6e9fc7f1f7affe1314fc0fbc3d357732c38ca11 (diff)
Add mixed samples support to XPs
Diffstat (limited to 'src/gpu/GrPipeline.cpp')
-rw-r--r--src/gpu/GrPipeline.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpu/GrPipeline.cpp b/src/gpu/GrPipeline.cpp
index d9d3d94853..4feddb00ab 100644
--- a/src/gpu/GrPipeline.cpp
+++ b/src/gpu/GrPipeline.cpp
@@ -23,7 +23,7 @@ GrPipeline::GrPipeline(const GrPipelineBuilder& pipelineBuilder,
// Create XferProcessor from DS's XPFactory
SkAutoTUnref<GrXferProcessor> xferProcessor(
pipelineBuilder.getXPFactory()->createXferProcessor(
- colorPOI, coveragePOI, dstTexture, caps));
+ colorPOI, coveragePOI, pipelineBuilder.hasMixedSamples(), dstTexture, caps));
GrColor overrideColor = GrColor_ILLEGAL;
if (colorPOI.firstEffectiveStageIndex() != 0) {