| /* |
| * Copyright 2018 Google Inc. |
| * |
| * Use of this source code is governed by a BSD-style license that can be |
| * found in the LICENSE file. |
| */ |
| |
| #include <cstddef> |
| #include <cstring> |
| #include <type_traits> |
| |
| #include "include/core/SkYUVAPixmaps.h" |
| #include "include/gpu/GrDirectContext.h" |
| #include "include/gpu/GrRecordingContext.h" |
| #include "include/gpu/GrYUVABackendTextures.h" |
| #include "src/core/SkAutoPixmapStorage.h" |
| #include "src/core/SkMipmap.h" |
| #include "src/core/SkScopeExit.h" |
| #include "src/gpu/GrBitmapTextureMaker.h" |
| #include "src/gpu/GrClip.h" |
| #include "src/gpu/GrDirectContextPriv.h" |
| #include "src/gpu/GrGpu.h" |
| #include "src/gpu/GrImageContextPriv.h" |
| #include "src/gpu/GrProxyProvider.h" |
| #include "src/gpu/GrRecordingContextPriv.h" |
| #include "src/gpu/GrSurfaceDrawContext.h" |
| #include "src/gpu/GrTexture.h" |
| #include "src/gpu/GrTextureProducer.h" |
| #include "src/gpu/SkGr.h" |
| #include "src/gpu/effects/GrYUVtoRGBEffect.h" |
| #include "src/image/SkImage_Gpu.h" |
| #include "src/image/SkImage_GpuYUVA.h" |
| |
| static constexpr auto kAssumedColorType = kRGBA_8888_SkColorType; |
| |
| SkImage_GpuYUVA::SkImage_GpuYUVA(sk_sp<GrImageContext> context, |
| uint32_t uniqueID, |
| GrYUVATextureProxies proxies, |
| sk_sp<SkColorSpace> imageColorSpace) |
| : INHERITED(std::move(context), |
| proxies.yuvaInfo().dimensions(), |
| uniqueID, |
| kAssumedColorType, |
| // If an alpha channel is present we always use kPremul. This is because, |
| // although the planar data is always un-premul, the final interleaved RGB image |
| // is/would-be premul. |
| proxies.yuvaInfo().hasAlpha() ? kPremul_SkAlphaType : kOpaque_SkAlphaType, |
| std::move(imageColorSpace)) |
| , fYUVAProxies(std::move(proxies)) { |
| // The caller should have checked this, just verifying. |
| SkASSERT(fYUVAProxies.isValid()); |
| } |
| |
| // For onMakeColorSpace() |
| SkImage_GpuYUVA::SkImage_GpuYUVA(sk_sp<GrImageContext> context, |
| const SkImage_GpuYUVA* image, |
| sk_sp<SkColorSpace> targetCS) |
| : INHERITED(std::move(context), |
| image->dimensions(), |
| kNeedNewImageUniqueID, |
| kAssumedColorType, |
| image->alphaType(), |
| std::move(targetCS)) |
| , fYUVAProxies(image->fYUVAProxies) |
| , fRGBView(image->fRGBView) |
| // Since null fFromColorSpace means no GrColorSpaceXform, we turn a null |
| // image->refColorSpace() into an explicit SRGB. |
| , fFromColorSpace(image->colorSpace() ? image->refColorSpace() : SkColorSpace::MakeSRGB()) { |
| // We should either have a RGB proxy *or* a set of YUVA proxies. |
| SkASSERT(fYUVAProxies.isValid() != SkToBool(image->fRGBView)); |
| } |
| |
| bool SkImage_GpuYUVA::setupMipmapsForPlanes(GrRecordingContext* context) const { |
| // We shouldn't get here if the planes were already flattened to RGBA. |
| SkASSERT(fYUVAProxies.isValid() && !fRGBView); |
| if (!context || !fContext->priv().matches(context)) { |
| return false; |
| } |
| if (!context->priv().caps()->mipmapSupport()) { |
| // We succeed in this case by doing nothing. |
| return true; |
| } |
| int n = fYUVAProxies.yuvaInfo().numPlanes(); |
| sk_sp<GrSurfaceProxy> newProxies[4]; |
| for (int i = 0; i < n; ++i) { |
| auto* t = fYUVAProxies.proxy(i)->asTextureProxy(); |
| if (t->mipmapped() == GrMipmapped::kNo && (t->width() > 1 || t->height() > 1)) { |
| auto newView = GrCopyBaseMipMapToView(context, fYUVAProxies.makeView(i)); |
| if (!newView) { |
| return false; |
| } |
| SkASSERT(newView.swizzle() == fYUVAProxies.makeView(i).swizzle()); |
| newProxies[i] = newView.detachProxy(); |
| } else { |
| newProxies[i] = fYUVAProxies.refProxy(i); |
| } |
| } |
| fYUVAProxies = GrYUVATextureProxies(fYUVAProxies.yuvaInfo(), |
| newProxies, |
| fYUVAProxies.textureOrigin()); |
| SkASSERT(fYUVAProxies.isValid()); |
| return true; |
| } |
| |
| ////////////////////////////////////////////////////////////////////////////////////////////////// |
| |
| GrSemaphoresSubmitted SkImage_GpuYUVA::onFlush(GrDirectContext* dContext, const GrFlushInfo& info) { |
| if (!fContext->priv().matches(dContext) || dContext->abandoned()) { |
| if (info.fSubmittedProc) { |
| info.fSubmittedProc(info.fSubmittedContext, false); |
| } |
| if (info.fFinishedProc) { |
| info.fFinishedProc(info.fFinishedContext); |
| } |
| return GrSemaphoresSubmitted::kNo; |
| } |
| |
| GrSurfaceProxy* proxies[SkYUVAInfo::kMaxPlanes] = {}; |
| size_t numProxies; |
| if (fRGBView) { |
| // Either we've already flushed the flattening draw or the flattening is unflushed. In the |
| // latter case it should still be ok to just pass fRGBView proxy because it in turn depends |
| // on the planar proxies and will cause all of their work to flush as well. |
| proxies[0] = fRGBView.proxy(); |
| numProxies = 1; |
| } else { |
| numProxies = fYUVAProxies.numPlanes(); |
| for (size_t i = 0; i < numProxies; ++i) { |
| proxies[i] = fYUVAProxies.proxy(i); |
| } |
| } |
| return dContext->priv().flushSurfaces({proxies, numProxies}, |
| SkSurface::BackendSurfaceAccess::kNoAccess, |
| info); |
| } |
| |
| bool SkImage_GpuYUVA::onHasMipmaps() const { |
| if (fRGBView) { |
| return fRGBView.asTextureProxy()->mipmapped() == GrMipmapped::kYes; |
| } |
| return fYUVAProxies.mipmapped() == GrMipmapped::kYes; |
| } |
| |
| size_t SkImage_GpuYUVA::onTextureSize() const { |
| if (fRGBView) { |
| return fRGBView.asTextureProxy()->gpuMemorySize(); |
| } |
| size_t size = 0; |
| for (int i = 0; i < fYUVAProxies.numPlanes(); ++i) { |
| size += fYUVAProxies.proxy(i)->gpuMemorySize(); |
| } |
| return size; |
| } |
| |
| sk_sp<SkImage> SkImage_GpuYUVA::onMakeColorTypeAndColorSpace(SkColorType, |
| sk_sp<SkColorSpace> targetCS, |
| GrDirectContext* direct) const { |
| // We explicitly ignore color type changes, for now. |
| |
| // we may need a mutex here but for now we expect usage to be in a single thread |
| if (fOnMakeColorSpaceTarget && |
| SkColorSpace::Equals(targetCS.get(), fOnMakeColorSpaceTarget.get())) { |
| return fOnMakeColorSpaceResult; |
| } |
| sk_sp<SkImage> result = sk_sp<SkImage>(new SkImage_GpuYUVA(sk_ref_sp(direct), this, targetCS)); |
| if (result) { |
| fOnMakeColorSpaceTarget = targetCS; |
| fOnMakeColorSpaceResult = result; |
| } |
| return result; |
| } |
| |
| sk_sp<SkImage> SkImage_GpuYUVA::onReinterpretColorSpace(sk_sp<SkColorSpace> newCS) const { |
| return sk_sp<SkImage>(new SkImage_GpuYUVA(fContext, this, std::move(newCS))); |
| } |
| |
| static GrSurfaceProxyView render_to_rgb(GrRecordingContext* context, |
| const SkColorInfo& colorInfo, |
| const GrYUVATextureProxies& proxies, |
| SkColorSpace* fromColorSpace, |
| GrMipmapped mipmapped, |
| SkBudgeted budgeted) { |
| GrImageInfo ii(colorInfo, proxies.yuvaInfo().dimensions()); |
| auto surfaceFillContext = GrSurfaceFillContext::Make(context, |
| std::move(ii), |
| SkBackingFit::kExact, |
| /*sample count*/ 1, |
| mipmapped, |
| GrProtected::kNo, |
| kTopLeft_GrSurfaceOrigin, |
| budgeted); |
| if (!surfaceFillContext) { |
| return {}; |
| } |
| |
| const GrCaps& caps = *context->priv().caps(); |
| |
| auto fp = GrYUVtoRGBEffect::Make(proxies, GrSamplerState::Filter::kNearest, caps); |
| if (fromColorSpace) { |
| fp = GrColorSpaceXformEffect::Make(std::move(fp), |
| fromColorSpace, colorInfo.alphaType(), |
| colorInfo.colorSpace(), colorInfo.alphaType()); |
| } |
| |
| surfaceFillContext->fillWithFP(std::move(fp)); |
| |
| return surfaceFillContext->readSurfaceView(); |
| } |
| |
| bool SkImage_GpuYUVA::flattenToRGB(GrRecordingContext* context, GrMipmapped mipmapped) const { |
| if (fRGBView.proxy()) { |
| if (mipmapped == GrMipmapped::kYes && |
| fRGBView.proxy()->asTextureProxy()->mipmapped() == GrMipmapped::kNo) { |
| GrSurfaceProxyView mippedView = GrCopyBaseMipMapToView(context, fRGBView); |
| if (!mippedView) { |
| return false; |
| } |
| fRGBView = std::move(mippedView); |
| return true; |
| } |
| return true; |
| } |
| |
| if (!context || !fContext->priv().matches(context)) { |
| return false; |
| } |
| |
| GrSurfaceProxyView rgbView = render_to_rgb(context, |
| this->imageInfo().colorInfo(), |
| fYUVAProxies, |
| fFromColorSpace.get(), |
| mipmapped, |
| SkBudgeted::kYes); |
| if (!rgbView) { |
| return false; |
| } |
| fRGBView = std::move(rgbView); |
| fYUVAProxies = {}; |
| return true; |
| } |
| |
| std::tuple<GrSurfaceProxyView, GrColorType> SkImage_GpuYUVA::onAsView( |
| GrRecordingContext* context, |
| GrMipmapped mipmapped, |
| GrImageTexGenPolicy policy) const { |
| if (!fContext->priv().matches(context)) { |
| return {}; |
| } |
| if (policy != GrImageTexGenPolicy::kDraw) { |
| SkBudgeted budgeted = policy == GrImageTexGenPolicy::kNew_Uncached_Budgeted |
| ? SkBudgeted::kYes |
| : SkBudgeted::kNo; |
| if (fRGBView) { |
| return {CopyView(context, fRGBView, mipmapped, policy), GrColorType::kRGBA_8888}; |
| } |
| auto view = render_to_rgb(context, |
| this->imageInfo().colorInfo(), |
| fYUVAProxies, |
| fFromColorSpace.get(), |
| mipmapped, |
| budgeted); |
| return {std::move(view), GrColorType::kRGBA_8888}; |
| } |
| if (!this->flattenToRGB(context, mipmapped)) { |
| return {}; |
| } |
| return {fRGBView, GrColorType::kRGBA_8888}; |
| } |
| |
| ////////////////////////////////////////////////////////////////////////////////////////////////// |
| |
| sk_sp<SkImage> SkImage::MakeFromYUVATextures(GrRecordingContext* context, |
| const GrYUVABackendTextures& yuvaTextures, |
| sk_sp<SkColorSpace> imageColorSpace, |
| TextureReleaseProc textureReleaseProc, |
| ReleaseContext releaseContext) { |
| auto releaseHelper = GrRefCntedCallback::Make(textureReleaseProc, releaseContext); |
| |
| GrProxyProvider* proxyProvider = context->priv().proxyProvider(); |
| int numPlanes = yuvaTextures.yuvaInfo().numPlanes(); |
| sk_sp<GrSurfaceProxy> proxies[SkYUVAInfo::kMaxPlanes]; |
| for (int plane = 0; plane < numPlanes; ++plane) { |
| proxies[plane] = proxyProvider->wrapBackendTexture(yuvaTextures.texture(plane), |
| kBorrow_GrWrapOwnership, |
| GrWrapCacheable::kNo, |
| kRead_GrIOType, |
| releaseHelper); |
| if (!proxies[plane]) { |
| return {}; |
| } |
| } |
| GrYUVATextureProxies yuvaProxies(yuvaTextures.yuvaInfo(), |
| proxies, |
| yuvaTextures.textureOrigin()); |
| |
| if (!yuvaProxies.isValid()) { |
| return nullptr; |
| } |
| |
| return sk_make_sp<SkImage_GpuYUVA>(sk_ref_sp(context), |
| kNeedNewImageUniqueID, |
| yuvaProxies, |
| imageColorSpace); |
| } |
| |
| sk_sp<SkImage> SkImage::MakeFromYUVAPixmaps(GrRecordingContext* context, |
| const SkYUVAPixmaps& pixmaps, |
| GrMipmapped buildMips, |
| bool limitToMaxTextureSize, |
| sk_sp<SkColorSpace> imageColorSpace) { |
| if (!context) { |
| return nullptr; // until we impl this for raster backend |
| } |
| |
| if (!pixmaps.isValid()) { |
| return nullptr; |
| } |
| |
| if (!context->priv().caps()->mipmapSupport()) { |
| buildMips = GrMipMapped::kNo; |
| } |
| |
| // Resize the pixmaps if necessary. |
| int numPlanes = pixmaps.numPlanes(); |
| int maxTextureSize = context->priv().caps()->maxTextureSize(); |
| int maxDim = std::max(pixmaps.yuvaInfo().width(), pixmaps.yuvaInfo().height()); |
| |
| SkYUVAPixmaps tempPixmaps; |
| const SkYUVAPixmaps* pixmapsToUpload = &pixmaps; |
| // We assume no plane is larger than the image size (and at least one plane is as big). |
| if (maxDim > maxTextureSize) { |
| if (!limitToMaxTextureSize) { |
| return nullptr; |
| } |
| float scale = static_cast<float>(maxTextureSize)/maxDim; |
| SkISize newDimensions = { |
| std::min(static_cast<int>(pixmaps.yuvaInfo().width() *scale), maxTextureSize), |
| std::min(static_cast<int>(pixmaps.yuvaInfo().height()*scale), maxTextureSize) |
| }; |
| SkYUVAInfo newInfo = pixmaps.yuvaInfo().makeDimensions(newDimensions); |
| SkYUVAPixmapInfo newPixmapInfo(newInfo, pixmaps.dataType(), /*row bytes*/ nullptr); |
| tempPixmaps = SkYUVAPixmaps::Allocate(newPixmapInfo); |
| SkSamplingOptions sampling(SkFilterMode::kLinear); |
| if (!tempPixmaps.isValid()) { |
| return nullptr; |
| } |
| for (int i = 0; i < numPlanes; ++i) { |
| if (!pixmaps.plane(i).scalePixels(tempPixmaps.plane(i), sampling)) { |
| return nullptr; |
| } |
| } |
| pixmapsToUpload = &tempPixmaps; |
| } |
| |
| // Convert to texture proxies. |
| GrSurfaceProxyView views[SkYUVAInfo::kMaxPlanes]; |
| GrColorType pixmapColorTypes[SkYUVAInfo::kMaxPlanes]; |
| for (int i = 0; i < numPlanes; ++i) { |
| // Turn the pixmap into a GrTextureProxy |
| SkBitmap bmp; |
| bmp.installPixels(pixmapsToUpload->plane(i)); |
| GrBitmapTextureMaker bitmapMaker(context, bmp, GrImageTexGenPolicy::kNew_Uncached_Budgeted); |
| views[i] = bitmapMaker.view(buildMips); |
| if (!views[i]) { |
| return nullptr; |
| } |
| pixmapColorTypes[i] = SkColorTypeToGrColorType(bmp.colorType()); |
| } |
| |
| GrYUVATextureProxies yuvaProxies(pixmapsToUpload->yuvaInfo(), views, pixmapColorTypes); |
| SkASSERT(yuvaProxies.isValid()); |
| return sk_make_sp<SkImage_GpuYUVA>(sk_ref_sp(context), |
| kNeedNewImageUniqueID, |
| std::move(yuvaProxies), |
| std::move(imageColorSpace)); |
| } |
| |
| ///////////////////////////////////////////////////////////////////////////////////////////////// |
| |
| sk_sp<SkImage> SkImage::MakePromiseYUVATexture(sk_sp<GrContextThreadSafeProxy> threadSafeProxy, |
| const GrYUVABackendTextureInfo& backendTextureInfo, |
| sk_sp<SkColorSpace> imageColorSpace, |
| PromiseImageTextureFulfillProc textureFulfillProc, |
| PromiseImageTextureReleaseProc textureReleaseProc, |
| PromiseImageTextureContext textureContexts[]) { |
| if (!backendTextureInfo.isValid()) { |
| return nullptr; |
| } |
| |
| SkISize planeDimensions[SkYUVAInfo::kMaxPlanes]; |
| int n = backendTextureInfo.yuvaInfo().planeDimensions(planeDimensions); |
| |
| // Our contract is that we will always call the release proc even on failure. |
| // We use the helper to convey the context, so we need to ensure make doesn't fail. |
| textureReleaseProc = textureReleaseProc ? textureReleaseProc : [](void*) {}; |
| sk_sp<GrRefCntedCallback> releaseHelpers[4]; |
| for (int i = 0; i < n; ++i) { |
| releaseHelpers[i] = GrRefCntedCallback::Make(textureReleaseProc, textureContexts[i]); |
| } |
| |
| if (!threadSafeProxy) { |
| return nullptr; |
| } |
| |
| SkAlphaType at = backendTextureInfo.yuvaInfo().hasAlpha() ? kPremul_SkAlphaType |
| : kOpaque_SkAlphaType; |
| SkImageInfo info = SkImageInfo::Make(backendTextureInfo.yuvaInfo().dimensions(), |
| kAssumedColorType, at, imageColorSpace); |
| if (!SkImageInfoIsValid(info)) { |
| return nullptr; |
| } |
| |
| // Make a lazy proxy for each plane and wrap in a view. |
| sk_sp<GrSurfaceProxy> proxies[4]; |
| for (int i = 0; i < n; ++i) { |
| proxies[i] = SkImage_GpuBase::MakePromiseImageLazyProxy(threadSafeProxy.get(), |
| planeDimensions[i], |
| backendTextureInfo.planeFormat(i), |
| GrMipmapped::kNo, |
| textureFulfillProc, |
| std::move(releaseHelpers[i])); |
| if (!proxies[i]) { |
| return nullptr; |
| } |
| } |
| GrYUVATextureProxies yuvaTextureProxies(backendTextureInfo.yuvaInfo(), |
| proxies, |
| backendTextureInfo.textureOrigin()); |
| SkASSERT(yuvaTextureProxies.isValid()); |
| sk_sp<GrImageContext> ctx(GrImageContextPriv::MakeForPromiseImage(std::move(threadSafeProxy))); |
| return sk_make_sp<SkImage_GpuYUVA>(std::move(ctx), |
| kNeedNewImageUniqueID, |
| std::move(yuvaTextureProxies), |
| std::move(imageColorSpace)); |
| } |