2013-03-10 18:43:38 -07: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 08:00:31 -07:00
|
|
|
|
|
|
|
using namespace gfx;
|
|
|
|
|
2013-03-10 18:43:38 -07:00
|
|
|
namespace image {
|
|
|
|
|
2014-07-14 12:21:34 -07:00
|
|
|
NS_IMPL_ISUPPORTS_INHERITED0(FrozenImage, ImageWrapper)
|
2013-03-10 18:43:38 -07:00
|
|
|
|
|
|
|
nsIntRect
|
|
|
|
FrozenImage::FrameRect(uint32_t /* aWhichFrame - ignored */)
|
|
|
|
{
|
|
|
|
return InnerImage()->FrameRect(FRAME_FIRST);
|
|
|
|
}
|
|
|
|
|
|
|
|
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-12 13:42:09 -07:00
|
|
|
bool dummy;
|
|
|
|
nsresult rv = InnerImage()->GetAnimated(&dummy);
|
2013-03-10 18:43:38 -07:00
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
*aAnimated = false;
|
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2014-04-15 11:02:23 -07:00
|
|
|
NS_IMETHODIMP_(TemporaryRef<SourceSurface>)
|
2013-03-10 18:43:38 -07:00
|
|
|
FrozenImage::GetFrame(uint32_t aWhichFrame,
|
2013-12-13 00:34:24 -08:00
|
|
|
uint32_t aFlags)
|
2013-03-10 18:43:38 -07:00
|
|
|
{
|
2013-12-13 00:34:24 -08:00
|
|
|
return InnerImage()->GetFrame(FRAME_FIRST, aFlags);
|
2013-03-10 18:43:38 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP_(bool)
|
|
|
|
FrozenImage::FrameIsOpaque(uint32_t aWhichFrame)
|
|
|
|
{
|
|
|
|
return InnerImage()->FrameIsOpaque(FRAME_FIRST);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
FrozenImage::GetImageContainer(layers::LayerManager* aManager,
|
|
|
|
layers::ImageContainer** _retval)
|
|
|
|
{
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
*_retval = nullptr;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
FrozenImage::Draw(gfxContext* aContext,
|
2013-10-01 14:01:19 -07:00
|
|
|
GraphicsFilter aFilter,
|
2013-03-10 18:43:38 -07:00
|
|
|
const gfxMatrix& aUserSpaceToImageSpace,
|
|
|
|
const gfxRect& aFill,
|
|
|
|
const nsIntRect& aSubimage,
|
|
|
|
const nsIntSize& aViewportSize,
|
|
|
|
const SVGImageContext* aSVGContext,
|
|
|
|
uint32_t /* aWhichFrame - ignored */,
|
|
|
|
uint32_t aFlags)
|
|
|
|
{
|
|
|
|
return InnerImage()->Draw(aContext, aFilter, aUserSpaceToImageSpace,
|
|
|
|
aFill, aSubimage, aViewportSize, aSVGContext,
|
|
|
|
FRAME_FIRST, aFlags);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP_(void)
|
2014-07-10 08:00:31 -07:00
|
|
|
FrozenImage::RequestRefresh(const TimeStamp& aTime)
|
2013-03-10 18:43:38 -07: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-25 15:58:20 -07:00
|
|
|
NS_IMETHODIMP_(float)
|
|
|
|
FrozenImage::GetFrameIndex(uint32_t aWhichFrame)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aWhichFrame <= FRAME_MAX_VALUE, "Invalid argument");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-03-10 18:43:38 -07:00
|
|
|
} // namespace image
|
|
|
|
} // namespace mozilla
|