2013-03-11 05:43:38 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2015-05-15 06:52:05 +03:00
|
|
|
#ifndef mozilla_image_FrozenImage_h
|
|
|
|
#define mozilla_image_FrozenImage_h
|
2013-03-11 05:43:38 +04:00
|
|
|
|
|
|
|
#include "ImageWrapper.h"
|
2014-04-15 22:02:23 +04:00
|
|
|
#include "mozilla/gfx/2D.h"
|
2015-10-18 08:24:48 +03:00
|
|
|
#include "mozilla/RefPtr.h"
|
2013-03-11 05:43:38 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace image {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An Image wrapper that disables animation, freezing the image at its first
|
|
|
|
* frame. It does this using two strategies. If this is the only instance of the
|
|
|
|
* image, animation will never start, because IncrementAnimationConsumers is
|
|
|
|
* ignored. If there is another instance that is animated, that's still OK,
|
|
|
|
* because any imgIContainer method that is affected by animation gets its
|
|
|
|
* aWhichFrame argument set to FRAME_FIRST when it passes through FrozenImage.
|
|
|
|
*
|
|
|
|
* XXX(seth): There a known (performance, not correctness) issue with
|
|
|
|
* GetImageContainer. See the comments for that method for more information.
|
|
|
|
*/
|
|
|
|
class FrozenImage : public ImageWrapper {
|
2014-07-10 19:00:31 +04:00
|
|
|
typedef gfx::SourceSurface SourceSurface;
|
2014-04-15 22:02:23 +04:00
|
|
|
|
2013-03-11 05:43:38 +04:00
|
|
|
public:
|
2018-02-12 23:44:40 +03:00
|
|
|
NS_INLINE_DECL_REFCOUNTING_INHERITED(FrozenImage, ImageWrapper)
|
2013-03-11 05:43:38 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void IncrementAnimationConsumers() override;
|
|
|
|
virtual void DecrementAnimationConsumers() override;
|
2013-03-11 05:43:38 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD GetAnimated(bool* aAnimated) override;
|
2015-06-17 17:00:52 +03:00
|
|
|
NS_IMETHOD_(already_AddRefed<SourceSurface>)
|
2015-03-21 19:28:04 +03:00
|
|
|
GetFrame(uint32_t aWhichFrame, uint32_t aFlags) override;
|
2015-09-19 23:34:09 +03:00
|
|
|
NS_IMETHOD_(already_AddRefed<SourceSurface>)
|
|
|
|
GetFrameAtSize(const gfx::IntSize& aSize, uint32_t aWhichFrame,
|
|
|
|
uint32_t aFlags) override;
|
2015-05-13 10:23:44 +03:00
|
|
|
NS_IMETHOD_(bool)
|
|
|
|
IsImageContainerAvailable(layers::LayerManager* aManager,
|
|
|
|
uint32_t aFlags) override;
|
2015-03-18 05:40:16 +03:00
|
|
|
NS_IMETHOD_(already_AddRefed<layers::ImageContainer>)
|
|
|
|
GetImageContainer(layers::LayerManager* aManager, uint32_t aFlags) override;
|
2017-11-17 14:45:26 +03:00
|
|
|
NS_IMETHOD_(bool)
|
|
|
|
IsImageContainerAvailableAtSize(layers::LayerManager* aManager,
|
|
|
|
const gfx::IntSize& aSize,
|
2015-03-21 19:28:04 +03:00
|
|
|
uint32_t aFlags) override;
|
2018-09-14 02:48:21 +03:00
|
|
|
NS_IMETHOD_(ImgDrawResult)
|
2017-11-17 14:45:26 +03:00
|
|
|
GetImageContainerAtSize(layers::LayerManager* aManager,
|
|
|
|
const gfx::IntSize& aSize,
|
2017-11-17 22:08:52 +03:00
|
|
|
const Maybe<SVGImageContext>& aSVGContext,
|
2017-11-17 14:45:26 +03:00
|
|
|
uint32_t aFlags,
|
|
|
|
layers::ImageContainer** aOutContainer) override;
|
2018-09-14 02:48:21 +03:00
|
|
|
NS_IMETHOD_(ImgDrawResult)
|
2017-12-11 18:37:59 +03:00
|
|
|
Draw(gfxContext* aContext, const nsIntSize& aSize, const ImageRegion& aRegion,
|
2016-05-25 19:01:18 +03:00
|
|
|
uint32_t aWhichFrame, gfx::SamplingFilter aSamplingFilter,
|
2015-02-05 00:50:56 +03:00
|
|
|
const Maybe<SVGImageContext>& aSVGContext, uint32_t aFlags,
|
2017-01-03 08:53:22 +03:00
|
|
|
float aOpacity) override;
|
2019-05-21 20:34:14 +03:00
|
|
|
NS_IMETHOD StartDecoding(uint32_t aFlags, uint32_t aWhichFrame) override;
|
|
|
|
NS_IMETHOD_(bool)
|
|
|
|
StartDecodingWithResult(uint32_t aFlags, uint32_t aWhichFrame) override;
|
2020-04-21 00:04:45 +03:00
|
|
|
NS_IMETHOD_(DecodeResult)
|
2019-05-21 20:34:14 +03:00
|
|
|
RequestDecodeWithResult(uint32_t aFlags, uint32_t aWhichFrame) override;
|
|
|
|
NS_IMETHOD RequestDecodeForSize(const nsIntSize& aSize, uint32_t aFlags,
|
|
|
|
uint32_t aWhichFrame) override;
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD_(void) RequestRefresh(const TimeStamp& aTime) override;
|
|
|
|
NS_IMETHOD GetAnimationMode(uint16_t* aAnimationMode) override;
|
|
|
|
NS_IMETHOD SetAnimationMode(uint16_t aAnimationMode) override;
|
|
|
|
NS_IMETHOD ResetAnimation() override;
|
|
|
|
NS_IMETHOD_(float) GetFrameIndex(uint32_t aWhichFrame) override;
|
2013-03-11 05:43:38 +04:00
|
|
|
|
|
|
|
protected:
|
2014-09-02 20:20:24 +04:00
|
|
|
explicit FrozenImage(Image* aImage) : ImageWrapper(aImage) {}
|
2014-06-23 22:49:08 +04:00
|
|
|
virtual ~FrozenImage() {}
|
2013-03-11 05:43:38 +04:00
|
|
|
|
|
|
|
private:
|
2013-04-06 01:14:34 +04:00
|
|
|
friend class ImageOps;
|
2013-03-11 05:43:38 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace image
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2015-05-15 06:52:05 +03:00
|
|
|
#endif // mozilla_image_FrozenImage_h
|