2012-06-26 06:43:30 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 20; 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 "MaskLayerImageCache.h"
|
2017-01-01 03:35:41 +03:00
|
|
|
|
2012-08-19 23:33:25 +04:00
|
|
|
#include "ImageContainer.h"
|
2017-01-01 03:35:41 +03:00
|
|
|
#include "mozilla/layers/ShadowLayers.h"
|
2012-06-26 06:43:30 +04:00
|
|
|
|
|
|
|
using namespace mozilla::layers;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
2012-08-19 23:33:25 +04:00
|
|
|
MaskLayerImageCache::MaskLayerImageCache()
|
|
|
|
{
|
2012-09-04 05:02:56 +04:00
|
|
|
MOZ_COUNT_CTOR(MaskLayerImageCache);
|
2012-08-19 23:33:25 +04:00
|
|
|
}
|
|
|
|
MaskLayerImageCache::~MaskLayerImageCache()
|
2012-09-04 05:02:56 +04:00
|
|
|
{
|
|
|
|
MOZ_COUNT_DTOR(MaskLayerImageCache);
|
|
|
|
}
|
2012-08-19 23:33:25 +04:00
|
|
|
|
2012-06-26 06:43:30 +04:00
|
|
|
void
|
2015-07-15 12:05:06 +03:00
|
|
|
MaskLayerImageCache::Sweep()
|
2012-06-26 06:43:30 +04:00
|
|
|
{
|
2015-07-15 12:05:06 +03:00
|
|
|
for (auto iter = mMaskImageContainers.Iter(); !iter.Done(); iter.Next()) {
|
|
|
|
const MaskLayerImageCache::MaskLayerImageKey* key = iter.Get()->mKey;
|
|
|
|
if (key->HasZeroLayerCount()) {
|
|
|
|
iter.Remove();
|
|
|
|
}
|
|
|
|
}
|
2012-06-26 06:43:30 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
ImageContainer*
|
|
|
|
MaskLayerImageCache::FindImageFor(const MaskLayerImageKey** aKey)
|
|
|
|
{
|
|
|
|
if (MaskLayerImageEntry* entry = mMaskImageContainers.GetEntry(**aKey)) {
|
|
|
|
*aKey = entry->mKey.get();
|
|
|
|
return entry->mContainer;
|
|
|
|
}
|
|
|
|
|
2012-07-30 18:20:58 +04:00
|
|
|
return nullptr;
|
2012-06-26 06:43:30 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MaskLayerImageCache::PutImage(const MaskLayerImageKey* aKey, ImageContainer* aContainer)
|
|
|
|
{
|
|
|
|
MaskLayerImageEntry* entry = mMaskImageContainers.PutEntry(*aKey);
|
|
|
|
entry->mContainer = aContainer;
|
|
|
|
}
|
|
|
|
|
2014-07-15 19:37:45 +04:00
|
|
|
MaskLayerImageCache::MaskLayerImageKey::MaskLayerImageKey()
|
2015-07-13 07:13:42 +03:00
|
|
|
: mRoundedClipRects()
|
|
|
|
, mLayerCount(0)
|
2014-07-15 19:37:45 +04:00
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(MaskLayerImageKey);
|
|
|
|
}
|
|
|
|
|
|
|
|
MaskLayerImageCache::MaskLayerImageKey::MaskLayerImageKey(const MaskLayerImageKey& aKey)
|
2015-07-13 07:13:42 +03:00
|
|
|
: mRoundedClipRects(aKey.mRoundedClipRects)
|
|
|
|
, mLayerCount(aKey.mLayerCount)
|
2014-07-15 19:37:45 +04:00
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(MaskLayerImageKey);
|
|
|
|
}
|
|
|
|
|
|
|
|
MaskLayerImageCache::MaskLayerImageKey::~MaskLayerImageKey()
|
|
|
|
{
|
|
|
|
MOZ_COUNT_DTOR(MaskLayerImageKey);
|
|
|
|
}
|
|
|
|
|
2015-07-13 18:25:42 +03:00
|
|
|
} // namespace mozilla
|