2017-10-27 20:33:53 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
2012-06-26 06:43:30 +04:00
|
|
|
* 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-08-10 05:43:11 +03:00
|
|
|
#include "mozilla/layers/KnowsCompositor.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
|
|
|
|
2015-07-15 12:05:06 +03:00
|
|
|
void MaskLayerImageCache::Sweep() {
|
|
|
|
for (auto iter = mMaskImageContainers.Iter(); !iter.Done(); iter.Next()) {
|
2020-02-01 12:40:36 +03:00
|
|
|
const auto& key = iter.Get()->mKey;
|
2015-07-15 12:05:06 +03:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2018-09-04 23:46:21 +03:00
|
|
|
void MaskLayerImageCache::PutImage(const MaskLayerImageKey* aKey,
|
|
|
|
ImageContainer* aContainer) {
|
2012-06-26 06:43:30 +04:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2018-09-04 23:46:21 +03:00
|
|
|
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
|