/* * Copyright 2019 Google LLC * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef GrSurfaceProxyView_DEFINED #define GrSurfaceProxyView_DEFINED #include "include/core/SkRefCnt.h" #include "include/gpu/GrTypes.h" #include "src/gpu/GrRenderTargetProxy.h" #include "src/gpu/GrSurfaceProxy.h" #include "src/gpu/GrSwizzle.h" #include "src/gpu/GrTextureProxy.h" class GrSurfaceProxyView { public: GrSurfaceProxyView() = default; GrSurfaceProxyView(sk_sp proxy, GrSurfaceOrigin origin, GrSwizzle swizzle) : fProxy(std::move(proxy)), fOrigin(origin), fSwizzle(swizzle) {} // This entry point is used when we don't care about the origin or the swizzle. explicit GrSurfaceProxyView(sk_sp proxy) : fProxy(std::move(proxy)), fOrigin(kTopLeft_GrSurfaceOrigin) {} GrSurfaceProxyView(GrSurfaceProxyView&& view) = default; GrSurfaceProxyView(const GrSurfaceProxyView&) = default; operator bool() const { return SkToBool(fProxy.get()); } GrSurfaceProxyView& operator=(const GrSurfaceProxyView&) = default; GrSurfaceProxyView& operator=(GrSurfaceProxyView&& view) = default; bool operator==(const GrSurfaceProxyView& view) const { return fProxy->uniqueID() == view.fProxy->uniqueID() && fOrigin == view.fOrigin && fSwizzle == view.fSwizzle; } bool operator!=(const GrSurfaceProxyView& other) const { return !(*this == other); } int width() const { return this->proxy()->width(); } int height() const { return this->proxy()->height(); } SkISize dimensions() const { return this->proxy()->dimensions(); } GrSurfaceProxy* proxy() const { return fProxy.get(); } sk_sp refProxy() const { return fProxy; } GrTextureProxy* asTextureProxy() const { if (!fProxy) { return nullptr; } return fProxy->asTextureProxy(); } sk_sp asTextureProxyRef() const { return sk_ref_sp(this->asTextureProxy()); } GrRenderTargetProxy* asRenderTargetProxy() const { if (!fProxy) { return nullptr; } return fProxy->asRenderTargetProxy(); } sk_sp asRenderTargetProxyRef() const { return sk_ref_sp(this->asRenderTargetProxy()); } GrSurfaceOrigin origin() const { return fOrigin; } GrSwizzle swizzle() const { return fSwizzle; } void concatSwizzle(GrSwizzle swizzle) { fSwizzle = GrSwizzle::Concat(fSwizzle, swizzle); } GrSurfaceProxyView makeSwizzle(GrSwizzle swizzle) const & { return {fProxy, fOrigin, GrSwizzle::Concat(fSwizzle, swizzle)}; } GrSurfaceProxyView makeSwizzle(GrSwizzle swizzle) && { return {std::move(fProxy), fOrigin, GrSwizzle::Concat(fSwizzle, swizzle)}; } void reset() { *this = {}; } // Helper that copies a rect of a src view'' proxy and then creates a view for the copy with // the same origin and swizzle as the src view. static GrSurfaceProxyView Copy(GrRecordingContext* context, GrSurfaceProxyView src, GrMipmapped mipMapped, SkIRect srcRect, SkBackingFit fit, SkBudgeted budgeted) { auto copy = GrSurfaceProxy::Copy(context, src.refProxy(), src.origin(), mipMapped, srcRect, fit, budgeted); return {std::move(copy), src.origin(), src.swizzle()}; } static GrSurfaceProxyView Copy(GrRecordingContext* context, GrSurfaceProxyView src, GrMipmapped mipMapped, SkBackingFit fit, SkBudgeted budgeted) { auto copy = GrSurfaceProxy::Copy(context, src.refProxy(), src.origin(), mipMapped, fit, budgeted); return {std::move(copy), src.origin(), src.swizzle()}; } // This does not reset the origin or swizzle, so the View can still be used to access those // properties associated with the detached proxy. sk_sp detachProxy() { return std::move(fProxy); } private: sk_sp fProxy; GrSurfaceOrigin fOrigin = kTopLeft_GrSurfaceOrigin; GrSwizzle fSwizzle; }; #endif