aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrDrawTarget.h
diff options
context:
space:
mode:
authorGravatar cdalton <cdalton@nvidia.com>2015-06-02 10:43:39 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-06-02 10:43:39 -0700
commit1fa4572d1a32e9fbf102d7388efe5e44bef460f1 (patch)
tree6c345ece354d8ff9cf45fa3051181ff09fbbbf45 /src/gpu/GrDrawTarget.h
parentd58d74ab582135be592f47e4ecc597b26607ed8a (diff)
Update XPF invariant info to not account for conflation
Renames getInvariantOutput to getInvariantBlendedColor on GrXPFactory and redefines it to not account for coverage conflation. This is the information that all the callsites actually wanted to know. BUG=skia: Review URL: https://codereview.chromium.org/1161273005
Diffstat (limited to 'src/gpu/GrDrawTarget.h')
-rw-r--r--src/gpu/GrDrawTarget.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gpu/GrDrawTarget.h b/src/gpu/GrDrawTarget.h
index c1eca9a81e..30a6cee4fa 100644
--- a/src/gpu/GrDrawTarget.h
+++ b/src/gpu/GrDrawTarget.h
@@ -229,8 +229,8 @@ protected:
const GrBatch* batch, const SkRect* devBounds,
GrDrawTarget* target);
- bool willBlendWithDst(const GrPrimitiveProcessor* primProc) const {
- return fPipelineBuilder->willBlendWithDst(primProc);
+ bool willColorBlendWithDst(const GrPrimitiveProcessor* primProc) const {
+ return fPipelineBuilder->willColorBlendWithDst(primProc);
}
private:
friend class GrDrawTarget;