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/. */
|
|
|
|
|
|
|
|
#include "FrozenImage.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
2014-07-10 19:00:31 +04:00
|
|
|
|
|
|
|
using namespace gfx;
|
2016-06-30 20:24:27 +03:00
|
|
|
using layers::ImageContainer;
|
|
|
|
using layers::LayerManager;
|
2014-07-10 19:00:31 +04:00
|
|
|
|
2013-03-11 05:43:38 +04:00
|
|
|
namespace image {
|
|
|
|
|
|
|
|
void FrozenImage::IncrementAnimationConsumers() {
|
|
|
|
// Do nothing. This will prevent animation from starting if there are no other
|
|
|
|
// instances of this image.
|
|
|
|
}
|
|
|
|
|
|
|
|
void FrozenImage::DecrementAnimationConsumers() {
|
|
|
|
// Do nothing.
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
FrozenImage::GetAnimated(bool* aAnimated) {
|
2013-03-13 00:42:09 +04:00
|
|
|
bool dummy;
|
|
|
|
nsresult rv = InnerImage()->GetAnimated(&dummy);
|
2013-03-11 05:43:38 +04:00
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
*aAnimated = false;
|
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2015-06-17 17:00:52 +03:00
|
|
|
NS_IMETHODIMP_(already_AddRefed<SourceSurface>)
|
2013-03-11 05:43:38 +04:00
|
|
|
FrozenImage::GetFrame(uint32_t aWhichFrame, uint32_t aFlags) {
|
2013-12-13 12:34:24 +04:00
|
|
|
return InnerImage()->GetFrame(FRAME_FIRST, aFlags);
|
2013-03-11 05:43:38 +04:00
|
|
|
}
|
|
|
|
|
2015-09-19 23:34:09 +03:00
|
|
|
NS_IMETHODIMP_(already_AddRefed<SourceSurface>)
|
|
|
|
FrozenImage::GetFrameAtSize(const IntSize& aSize, uint32_t aWhichFrame,
|
|
|
|
uint32_t aFlags) {
|
|
|
|
return InnerImage()->GetFrameAtSize(aSize, FRAME_FIRST, aFlags);
|
|
|
|
}
|
|
|
|
|
2015-05-13 10:23:44 +03:00
|
|
|
NS_IMETHODIMP_(bool)
|
|
|
|
FrozenImage::IsImageContainerAvailable(LayerManager* aManager,
|
|
|
|
uint32_t aFlags) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-03-18 05:40:16 +03:00
|
|
|
NS_IMETHODIMP_(already_AddRefed<ImageContainer>)
|
|
|
|
FrozenImage::GetImageContainer(layers::LayerManager* aManager,
|
|
|
|
uint32_t aFlags) {
|
2013-03-11 05:43:38 +04:00
|
|
|
// XXX(seth): GetImageContainer does not currently support anything but the
|
|
|
|
// current frame. We work around this by always returning null, but if it ever
|
|
|
|
// turns out that FrozenImage is widely used on codepaths that can actually
|
|
|
|
// benefit from GetImageContainer, it would be a good idea to fix that method
|
|
|
|
// for performance reasons.
|
2015-03-18 05:40:16 +03:00
|
|
|
return nullptr;
|
2013-03-11 05:43:38 +04:00
|
|
|
}
|
|
|
|
|
2017-11-17 14:45:26 +03:00
|
|
|
NS_IMETHODIMP_(bool)
|
|
|
|
FrozenImage::IsImageContainerAvailableAtSize(LayerManager* aManager,
|
|
|
|
const IntSize& aSize,
|
|
|
|
uint32_t aFlags) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-09-14 02:48:21 +03:00
|
|
|
NS_IMETHODIMP_(ImgDrawResult)
|
2017-11-17 14:45:26 +03:00
|
|
|
FrozenImage::GetImageContainerAtSize(layers::LayerManager* aManager,
|
2018-09-14 02:48:21 +03:00
|
|
|
const gfx::IntSize& aSize,
|
2017-11-17 22:08:52 +03:00
|
|
|
const Maybe<SVGImageContext>& aSVGContext,
|
2018-09-14 02:48:21 +03:00
|
|
|
uint32_t aFlags,
|
|
|
|
layers::ImageContainer** aOutContainer) {
|
2017-11-17 14:45:26 +03:00
|
|
|
// XXX(seth): GetImageContainer does not currently support anything but the
|
|
|
|
// current frame. We work around this by always returning null, but if it ever
|
|
|
|
// turns out that FrozenImage is widely used on codepaths that can actually
|
|
|
|
// benefit from GetImageContainer, it would be a good idea to fix that method
|
|
|
|
// for performance reasons.
|
2018-09-14 02:48:21 +03:00
|
|
|
return ImgDrawResult::NOT_SUPPORTED;
|
2017-11-17 14:45:26 +03:00
|
|
|
}
|
|
|
|
|
2017-12-11 18:37:59 +03:00
|
|
|
NS_IMETHODIMP_(ImgDrawResult)
|
2013-03-11 05:43:38 +04:00
|
|
|
FrozenImage::Draw(gfxContext* aContext, const nsIntSize& aSize,
|
2014-08-23 00:12:38 +04:00
|
|
|
const ImageRegion& aRegion,
|
2013-03-11 05:43:38 +04:00
|
|
|
uint32_t /* aWhichFrame - ignored */,
|
2016-05-25 19:01:18 +03:00
|
|
|
SamplingFilter aSamplingFilter,
|
2014-08-23 00:12:38 +04:00
|
|
|
const Maybe<SVGImageContext>& aSVGContext, uint32_t aFlags,
|
2017-01-03 08:53:22 +03:00
|
|
|
float aOpacity) {
|
2014-08-23 00:12:38 +04:00
|
|
|
return InnerImage()->Draw(aContext, aSize, aRegion, FRAME_FIRST,
|
2017-01-03 08:53:22 +03:00
|
|
|
aSamplingFilter, aSVGContext, aFlags, aOpacity);
|
2013-03-11 05:43:38 +04:00
|
|
|
}
|
|
|
|
|
2019-05-21 20:34:14 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
FrozenImage::StartDecoding(uint32_t aFlags, uint32_t aWhichFrame) {
|
|
|
|
return InnerImage()->StartDecoding(aFlags, FRAME_FIRST);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FrozenImage::StartDecodingWithResult(uint32_t aFlags,
|
|
|
|
uint32_t aWhichFrame) {
|
|
|
|
return InnerImage()->StartDecodingWithResult(aFlags, FRAME_FIRST);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FrozenImage::RequestDecodeWithResult(uint32_t aFlags,
|
|
|
|
uint32_t aWhichFrame) {
|
|
|
|
return InnerImage()->RequestDecodeWithResult(aFlags, FRAME_FIRST);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
FrozenImage::RequestDecodeForSize(const nsIntSize& aSize, uint32_t aFlags,
|
|
|
|
uint32_t aWhichFrame) {
|
|
|
|
return InnerImage()->RequestDecodeForSize(aSize, aFlags, FRAME_FIRST);
|
|
|
|
}
|
|
|
|
|
2013-03-11 05:43:38 +04:00
|
|
|
NS_IMETHODIMP_(void)
|
2014-07-10 19:00:31 +04:00
|
|
|
FrozenImage::RequestRefresh(const TimeStamp& aTime) {
|
2013-03-11 05:43:38 +04:00
|
|
|
// Do nothing.
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
FrozenImage::GetAnimationMode(uint16_t* aAnimationMode) {
|
|
|
|
*aAnimationMode = kNormalAnimMode;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
FrozenImage::SetAnimationMode(uint16_t aAnimationMode) {
|
|
|
|
// Do nothing.
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
FrozenImage::ResetAnimation() {
|
|
|
|
// Do nothing.
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2013-04-26 02:58:20 +04:00
|
|
|
NS_IMETHODIMP_(float)
|
|
|
|
FrozenImage::GetFrameIndex(uint32_t aWhichFrame) {
|
|
|
|
MOZ_ASSERT(aWhichFrame <= FRAME_MAX_VALUE, "Invalid argument");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-03-11 05:43:38 +04:00
|
|
|
} // namespace image
|
|
|
|
} // namespace mozilla
|