aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/effects/GrYUVtoRGBEffect.cpp
diff options
context:
space:
mode:
authorGravatar joshualitt <joshualitt@chromium.org>2014-10-27 15:33:33 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2014-10-27 15:33:33 -0700
commit84c94c0dfd1e12e97d8a835882dda575f36e41d2 (patch)
tree7992422b87bb7f3997c4525b3d21dc342b4ce2d4 /src/gpu/effects/GrYUVtoRGBEffect.cpp
parent76993edbe5dbbde07a843507184abf90c64d9928 (diff)
Working patch to remove constant attributes. This may cause some gm mismatches, I will rebaseline tonight.
Diffstat (limited to 'src/gpu/effects/GrYUVtoRGBEffect.cpp')
-rw-r--r--src/gpu/effects/GrYUVtoRGBEffect.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpu/effects/GrYUVtoRGBEffect.cpp b/src/gpu/effects/GrYUVtoRGBEffect.cpp
index f02c1b2295..703c672cfd 100644
--- a/src/gpu/effects/GrYUVtoRGBEffect.cpp
+++ b/src/gpu/effects/GrYUVtoRGBEffect.cpp
@@ -109,7 +109,7 @@ private:
virtual void onComputeInvariantOutput(InvariantOutput* inout) const SK_OVERRIDE {
// YUV is opaque
inout->setToOther(kA_GrColorComponentFlag, 0xFF << GrColor_SHIFT_A,
- InvariantOutput::kWill_ReadInput);
+ InvariantOutput::kWillNot_ReadInput);
}
GrCoordTransform fCoordTransform;