/* * Copyright 2019 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef GrRecordingContextPriv_DEFINED #define GrRecordingContextPriv_DEFINED #include "include/core/SkPaint.h" #include "include/gpu/GrRecordingContext.h" #include "src/gpu/BaseDevice.h" #include "src/gpu/GrImageContextPriv.h" #include "src/gpu/text/GrSDFTControl.h" class GrImageInfo; class GrSwizzle; class SkDeferredDisplayList; namespace skgpu { class SurfaceContext; class SurfaceFillContext; } /** Class that exposes methods on GrRecordingContext that are only intended for use internal to Skia. This class is purely a privileged window into GrRecordingContext. It should never have additional data members or virtual methods. */ class GrRecordingContextPriv : public GrImageContextPriv { public: GrRecordingContext* context() { return static_cast(fContext); } const GrRecordingContext* context() const { return static_cast(fContext); } GrProxyProvider* proxyProvider() { return this->context()->proxyProvider(); } const GrProxyProvider* proxyProvider() const { return this->context()->proxyProvider(); } GrDrawingManager* drawingManager() { return this->context()->drawingManager(); } SkArenaAlloc* recordTimeAllocator() { return this->context()->arenas().recordTimeAllocator(); } GrSubRunAllocator* recordTimeSubRunAllocator() { return this->context()->arenas().recordTimeSubRunAllocator(); } GrRecordingContext::Arenas arenas() { return this->context()->arenas(); } GrRecordingContext::OwnedArenas&& detachArenas() { return this->context()->detachArenas(); } void recordProgramInfo(const GrProgramInfo* programInfo) { this->context()->recordProgramInfo(programInfo); } void detachProgramData(SkTArray* dst) { this->context()->detachProgramData(dst); } GrTextBlobCache* getTextBlobCache() { return this->context()->getTextBlobCache(); } GrThreadSafeCache* threadSafeCache() { return this->context()->threadSafeCache(); } void moveRenderTasksToDDL(SkDeferredDisplayList*); /** * Registers an object for flush-related callbacks. (See GrOnFlushCallbackObject.) * * NOTE: the drawing manager tracks this object as a raw pointer; it is up to the caller to * ensure its lifetime is tied to that of the context. */ void addOnFlushCallbackObject(GrOnFlushCallbackObject*); GrAuditTrail* auditTrail() { return this->context()->fAuditTrail.get(); } #if GR_TEST_UTILS // Used by tests that intentionally exercise codepaths that print warning messages, in order to // not confuse users with output that looks like a testing failure. class AutoSuppressWarningMessages { public: AutoSuppressWarningMessages(GrRecordingContext* context) : fContext(context) { ++fContext->fSuppressWarningMessages; } ~AutoSuppressWarningMessages() { --fContext->fSuppressWarningMessages; } private: GrRecordingContext* fContext; }; void incrSuppressWarningMessages() { ++this->context()->fSuppressWarningMessages; } void decrSuppressWarningMessages() { --this->context()->fSuppressWarningMessages; } #endif void printWarningMessage(const char* msg) const { #if GR_TEST_UTILS if (this->context()->fSuppressWarningMessages > 0) { return; } #endif SkDebugf("%s", msg); } GrRecordingContext::Stats* stats() { return &this->context()->fStats; } #if GR_GPU_STATS && GR_TEST_UTILS using DMSAAStats = GrRecordingContext::DMSAAStats; DMSAAStats& dmsaaStats() { return this->context()->fDMSAAStats; } #endif GrSDFTControl getSDFTControl(bool useSDFTForSmallText) const; /** * Create a GrRecordingContext without a resource cache */ static sk_sp MakeDDL(sk_sp); sk_sp createDevice(GrColorType, sk_sp, sk_sp, GrSurfaceOrigin, const SkSurfaceProps&, skgpu::BaseDevice::InitContents); sk_sp createDevice(SkBudgeted, const SkImageInfo&, SkBackingFit, int sampleCount, GrMipmapped, GrProtected, GrSurfaceOrigin, const SkSurfaceProps&, skgpu::BaseDevice::InitContents); // If the passed in GrSurfaceProxy is renderable this will return a SurfaceDrawContext, // otherwise it will return a SurfaceContext. std::unique_ptr makeSC(GrSurfaceProxyView readView, const GrColorInfo&); // Makes either a SurfaceContext, SurfaceFillContext, or a SurfaceDrawContext, depending on // GrRenderable and the GrImageInfo. std::unique_ptr makeSC(const GrImageInfo&, const GrBackendFormat&, SkBackingFit = SkBackingFit::kExact, GrSurfaceOrigin = kTopLeft_GrSurfaceOrigin, GrRenderable = GrRenderable::kNo, int renderTargetSampleCnt = 1, GrMipmapped = GrMipmapped::kNo, GrProtected = GrProtected::kNo, SkBudgeted = SkBudgeted::kYes); /** * Uses GrImageInfo's color type to pick the default texture format. Will return a * SurfaceDrawContext if possible. */ std::unique_ptr makeSFC( GrImageInfo, SkBackingFit = SkBackingFit::kExact, int sampleCount = 1, GrMipmapped = GrMipmapped::kNo, GrProtected = GrProtected::kNo, GrSurfaceOrigin = kTopLeft_GrSurfaceOrigin, SkBudgeted = SkBudgeted::kYes); /** * Makes a custom configured SurfaceFillContext where the caller specifies the specific * texture format and swizzles. The color type will be kUnknown. Returns a SurfaceDrawContext * if possible. */ std::unique_ptr makeSFC(SkAlphaType, sk_sp, SkISize dimensions, SkBackingFit, const GrBackendFormat&, int sampleCount, GrMipmapped, GrProtected, GrSwizzle readSwizzle, GrSwizzle writeSwizzle, GrSurfaceOrigin, SkBudgeted); /** * Like the above but uses GetFallbackColorTypeAndFormat to find a fallback color type (and * compatible format) if the passed GrImageInfo's color type is not renderable. */ std::unique_ptr makeSFCWithFallback( GrImageInfo, SkBackingFit = SkBackingFit::kExact, int sampleCount = 1, GrMipmapped = GrMipmapped::kNo, GrProtected = GrProtected::kNo, GrSurfaceOrigin = kTopLeft_GrSurfaceOrigin, SkBudgeted = SkBudgeted::kYes); /** * Creates a SurfaceFillContext from an existing GrBackendTexture. The GrColorInfo's color * type must be compatible with backend texture's format or this will fail. All formats are * considered compatible with kUnknown. Returns a SurfaceDrawContext if possible. */ std::unique_ptr makeSFCFromBackendTexture( GrColorInfo, const GrBackendTexture&, int sampleCount, GrSurfaceOrigin, sk_sp releaseHelper); protected: explicit GrRecordingContextPriv(GrRecordingContext* rContext) : GrImageContextPriv(rContext) {} // Required until C++17 copy elision GrRecordingContextPriv(const GrRecordingContextPriv&) = default; private: GrRecordingContextPriv& operator=(const GrRecordingContextPriv&) = delete; // No taking addresses of this type. const GrRecordingContextPriv* operator&() const; GrRecordingContextPriv* operator&(); friend class GrRecordingContext; // to construct/copy this type. using INHERITED = GrImageContextPriv; }; inline GrRecordingContextPriv GrRecordingContext::priv() { return GrRecordingContextPriv(this); } inline const GrRecordingContextPriv GrRecordingContext::priv () const { // NOLINT(readability-const-return-type) return GrRecordingContextPriv(const_cast(this)); } #endif