diff options
author | joshualitt <joshualitt@google.com> | 2014-10-27 17:56:18 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-27 17:56:18 -0700 |
commit | 9f2825f249110153eba6c5a5713713033696be5c (patch) | |
tree | 485c54ac223d665de8f56120e80d59b2454d59d2 /src/gpu/effects | |
parent | 84c94c0dfd1e12e97d8a835882dda575f36e41d2 (diff) |
Revert of Patch to remove constant attributes (patchset #6 id:100001 of https://codereview.chromium.org/678073005/)
Reason for revert:
Breaks the K1
Original issue's description:
> Working patch to remove constant attributes. This may cause some gm mismatches, I will rebaseline tonight.
>
> BUG=skia:
>
> Committed: https://skia.googlesource.com/skia/+/84c94c0dfd1e12e97d8a835882dda575f36e41d2
TBR=bsalomon@google.com,egdaniel@google.com,joshualitt@chromium.org
NOTREECHECKS=true
NOTRY=true
BUG=skia:
Review URL: https://codereview.chromium.org/679363002
Diffstat (limited to 'src/gpu/effects')
-rw-r--r-- | src/gpu/effects/GrYUVtoRGBEffect.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpu/effects/GrYUVtoRGBEffect.cpp b/src/gpu/effects/GrYUVtoRGBEffect.cpp index 703c672cfd..f02c1b2295 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::kWillNot_ReadInput); + InvariantOutput::kWill_ReadInput); } GrCoordTransform fCoordTransform; |