diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-11-21 13:34:01 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-12-04 20:02:29 +0100 |
commit | 0a6db54d86604e3b932f0ddd304e6df8e5961d98 (patch) | |
tree | 8f47b37f266fd6b4e0755230db8080ecac62a0d8 /image/decoders/nsWebPDecoder.cpp | |
parent | c5d5a28f76524886f185ba50b230e8ce0d08eacb (diff) | |
download | UXP-0a6db54d86604e3b932f0ddd304e6df8e5961d98.tar UXP-0a6db54d86604e3b932f0ddd304e6df8e5961d98.tar.gz UXP-0a6db54d86604e3b932f0ddd304e6df8e5961d98.tar.lz UXP-0a6db54d86604e3b932f0ddd304e6df8e5961d98.tar.xz UXP-0a6db54d86604e3b932f0ddd304e6df8e5961d98.zip |
Bug 1462355 - Part 1c. Make individual image decoders to use updated Decoder/SurfacePipe methods.
Extend this change to nsWebPDecoder.cpp
Diffstat (limited to 'image/decoders/nsWebPDecoder.cpp')
-rw-r--r-- | image/decoders/nsWebPDecoder.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/image/decoders/nsWebPDecoder.cpp b/image/decoders/nsWebPDecoder.cpp index 4d6566486..4f3cc8b2a 100644 --- a/image/decoders/nsWebPDecoder.cpp +++ b/image/decoders/nsWebPDecoder.cpp @@ -234,8 +234,12 @@ nsWebPDecoder::CreateFrame(const nsIntRect& aFrameRect) SurfacePipeFlags pipeFlags = SurfacePipeFlags(); + AnimationParams animParams { + aFrameRect, mTimeout, mCurrentFrame, mBlend, mDisposal + }; + Maybe<SurfacePipe> pipe = SurfacePipeFactory::CreateSurfacePipe(this, - mCurrentFrame, Size(), OutputSize(), aFrameRect, mFormat, pipeFlags); + Size(), OutputSize(), aFrameRect, mFormat, Some(animParams), pipeFlags); if (!pipe) { MOZ_LOG(sWebPLog, LogLevel::Error, ("[this=%p] nsWebPDecoder::CreateFrame -- no pipe\n", this)); |