/* -*- 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 * 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/. */ /* utility code for drawing images as CSS borders, backgrounds, and shapes. */ #include "nsImageRenderer.h" #include "mozilla/webrender/WebRenderAPI.h" #include "gfxContext.h" #include "gfxDrawable.h" #include "ImageOps.h" #include "ImageRegion.h" #include "mozilla/layers/RenderRootStateManager.h" #include "mozilla/layers/StackingContextHelper.h" #include "mozilla/layers/WebRenderLayerManager.h" #include "nsContentUtils.h" #include "nsCSSRendering.h" #include "nsCSSRenderingGradients.h" #include "nsDeviceContext.h" #include "nsIFrame.h" #include "nsStyleStructInlines.h" #include "nsSVGDisplayableFrame.h" #include "SVGObserverUtils.h" #include "nsSVGIntegrationUtils.h" using namespace mozilla; using namespace mozilla::gfx; using namespace mozilla::image; using namespace mozilla::layers; nsSize CSSSizeOrRatio::ComputeConcreteSize() const { NS_ASSERTION(CanComputeConcreteSize(), "Cannot compute"); if (mHasWidth && mHasHeight) { return nsSize(mWidth, mHeight); } if (mHasWidth) { return nsSize(mWidth, mRatio.Inverted().ApplyTo(mWidth)); } MOZ_ASSERT(mHasHeight); return nsSize(mRatio.ApplyTo(mHeight), mHeight); } nsImageRenderer::nsImageRenderer(nsIFrame* aForFrame, const StyleImage* aImage, uint32_t aFlags) : mForFrame(aForFrame), mImage(aImage), mType(aImage->tag), mImageContainer(nullptr), mGradientData(nullptr), mPaintServerFrame(nullptr), mPrepareResult(ImgDrawResult::NOT_READY), mSize(0, 0), mFlags(aFlags), mExtendMode(ExtendMode::CLAMP), mMaskOp(StyleMaskMode::MatchSource) {} static bool ShouldTreatAsCompleteDueToSyncDecode(const StyleImage* aImage, uint32_t aFlags) { if (!(aFlags & nsImageRenderer::FLAG_SYNC_DECODE_IMAGES)) { return false; } imgRequestProxy* req = aImage->GetImageRequest(); if (!req) { return false; } uint32_t status = 0; if (NS_FAILED(req->GetImageStatus(&status))) { return false; } if (status & imgIRequest::STATUS_ERROR) { // The image is "complete" since it's a corrupt image. If we created an // imgIContainer at all, return true. nsCOMPtr image; req->GetImage(getter_AddRefs(image)); return bool(image); } if (!(status & imgIRequest::STATUS_LOAD_COMPLETE)) { // We must have loaded all of the image's data and the size must be // available, or else sync decoding won't be able to decode the image. return false; } return true; } bool nsImageRenderer::PrepareImage() { if (mImage->IsNone() || (mImage->IsImageRequestType() && !mImage->GetImageRequest())) { // mImage->GetImageRequest() could be null here if the StyleImage refused // to load a same-document URL, or the url was invalid, for example. mPrepareResult = ImgDrawResult::BAD_IMAGE; return false; } if (!mImage->IsComplete()) { // Make sure the image is actually decoding. bool frameComplete = mImage->StartDecoding(); // Boost the loading priority since we know we want to draw the image. if ((mFlags & nsImageRenderer::FLAG_PAINTING_TO_WINDOW) && mImage->IsImageRequestType()) { MOZ_ASSERT(mImage->GetImageRequest(), "must have image data, since we checked above"); mImage->GetImageRequest()->BoostPriority(imgIRequest::CATEGORY_DISPLAY); } // Check again to see if we finished. // We cannot prepare the image for rendering if it is not fully loaded. // Special case: If we requested a sync decode and the image has loaded, // push on through because the Draw() will do a sync decode then. if (!(frameComplete || mImage->IsComplete()) && !ShouldTreatAsCompleteDueToSyncDecode(mImage, mFlags)) { mPrepareResult = ImgDrawResult::NOT_READY; return false; } } if (mImage->IsImageRequestType()) { MOZ_ASSERT(mImage->GetImageRequest(), "must have image data, since we checked above"); nsCOMPtr srcImage; DebugOnly rv = mImage->GetImageRequest()->GetImage(getter_AddRefs(srcImage)); MOZ_ASSERT(NS_SUCCEEDED(rv) && srcImage, "If GetImage() is failing, mImage->IsComplete() " "should have returned false"); if (!mImage->IsRect()) { mImageContainer.swap(srcImage); } else { auto croprect = mImage->ComputeActualCropRect(); if (!croprect || croprect->mRect.IsEmpty()) { // The cropped image has zero size mPrepareResult = ImgDrawResult::BAD_IMAGE; return false; } if (croprect->mIsEntireImage) { // The cropped image is identical to the source image mImageContainer.swap(srcImage); } else { nsCOMPtr subImage = ImageOps::Clip(srcImage, croprect->mRect, Nothing()); mImageContainer.swap(subImage); } } mPrepareResult = ImgDrawResult::SUCCESS; } else if (mImage->IsGradient()) { mGradientData = &*mImage->AsGradient(); mPrepareResult = ImgDrawResult::SUCCESS; } else if (mImage->IsElement()) { dom::Element* paintElement = // may be null SVGObserverUtils::GetAndObserveBackgroundImage( mForFrame->FirstContinuation(), mImage->AsElement().AsAtom()); // If the referenced element is an , , or