60dd62ba20
This reverts commit 2cce805f1f
.
Reason for revert: Chrome
Original change's description:
> Always try to reduce opList splitting in DDL contexts/drawingManagers
>
> This may get us in trouble w/ local DDL testing (since we run all our GMs through DDLs). For Chrome this shouldn't yet be a problem (since they are only using DDLs for compositing).
>
> This does mean we're on a tight timeline to land predictive intermediate flushes before Chrome starts using DDLs for rasterization.
>
> Change-Id: I0bb95c075cff3ee49498ff267d76c3a61d16373e
> Reviewed-on: https://skia-review.googlesource.com/c/skia/+/199722
> Reviewed-by: Brian Salomon <bsalomon@google.com>
> Commit-Queue: Robert Phillips <robertphillips@google.com>
TBR=bsalomon@google.com,robertphillips@google.com
Change-Id: Idb2dbda1a41844b2541526d504b117fd4cd628cc
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/200505
Reviewed-by: Robert Phillips <robertphillips@google.com>
Commit-Queue: Robert Phillips <robertphillips@google.com>
122 lines
5.1 KiB
C++
122 lines
5.1 KiB
C++
/*
|
|
* 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 GrRecordingContext_DEFINED
|
|
#define GrRecordingContext_DEFINED
|
|
|
|
#include "GrAuditTrail.h"
|
|
#include "GrImageContext.h"
|
|
#include "SkRefCnt.h"
|
|
|
|
class GrDrawingManager;
|
|
class GrOnFlushCallbackObject;
|
|
class GrOpMemoryPool;
|
|
class GrRecordingContextPriv;
|
|
class GrStrikeCache;
|
|
class GrTextBlobCache;
|
|
|
|
class SK_API GrRecordingContext : public GrImageContext {
|
|
public:
|
|
~GrRecordingContext() override;
|
|
|
|
// Provides access to functions that aren't part of the public API.
|
|
GrRecordingContextPriv priv();
|
|
const GrRecordingContextPriv priv() const;
|
|
|
|
protected:
|
|
friend class GrRecordingContextPriv; // for hidden functions
|
|
|
|
GrRecordingContext(GrBackendApi, const GrContextOptions&, uint32_t contextID);
|
|
bool init(sk_sp<const GrCaps>, sk_sp<GrSkSLFPFactoryCache>) override;
|
|
void setupDrawingManager(bool explicitlyAllocate, bool sortOpLists);
|
|
|
|
void abandonContext() override;
|
|
|
|
GrDrawingManager* drawingManager();
|
|
|
|
sk_sp<GrOpMemoryPool> refOpMemoryPool();
|
|
GrOpMemoryPool* opMemoryPool();
|
|
|
|
GrStrikeCache* getGrStrikeCache() { return fStrikeCache.get(); }
|
|
GrTextBlobCache* getTextBlobCache();
|
|
const GrTextBlobCache* getTextBlobCache() const;
|
|
|
|
/**
|
|
* 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*);
|
|
|
|
sk_sp<GrSurfaceContext> makeWrappedSurfaceContext(sk_sp<GrSurfaceProxy>,
|
|
sk_sp<SkColorSpace> = nullptr,
|
|
const SkSurfaceProps* = nullptr);
|
|
|
|
sk_sp<GrSurfaceContext> makeDeferredSurfaceContext(const GrBackendFormat&,
|
|
const GrSurfaceDesc&,
|
|
GrSurfaceOrigin,
|
|
GrMipMapped,
|
|
SkBackingFit,
|
|
SkBudgeted,
|
|
sk_sp<SkColorSpace> colorSpace = nullptr,
|
|
const SkSurfaceProps* = nullptr);
|
|
|
|
/*
|
|
* Create a new render target context backed by a deferred-style
|
|
* GrRenderTargetProxy. We guarantee that "asTextureProxy" will succeed for
|
|
* renderTargetContexts created via this entry point.
|
|
*/
|
|
sk_sp<GrRenderTargetContext> makeDeferredRenderTargetContext(
|
|
const GrBackendFormat& format,
|
|
SkBackingFit fit,
|
|
int width, int height,
|
|
GrPixelConfig config,
|
|
sk_sp<SkColorSpace> colorSpace,
|
|
int sampleCnt = 1,
|
|
GrMipMapped = GrMipMapped::kNo,
|
|
GrSurfaceOrigin origin = kBottomLeft_GrSurfaceOrigin,
|
|
const SkSurfaceProps* surfaceProps = nullptr,
|
|
SkBudgeted = SkBudgeted::kYes);
|
|
|
|
/*
|
|
* This method will attempt to create a renderTargetContext that has, at least, the number of
|
|
* channels and precision per channel as requested in 'config' (e.g., A8 and 888 can be
|
|
* converted to 8888). It may also swizzle the channels (e.g., BGRA -> RGBA).
|
|
* SRGB-ness will be preserved.
|
|
*/
|
|
sk_sp<GrRenderTargetContext> makeDeferredRenderTargetContextWithFallback(
|
|
const GrBackendFormat& format,
|
|
SkBackingFit fit,
|
|
int width, int height,
|
|
GrPixelConfig config,
|
|
sk_sp<SkColorSpace> colorSpace,
|
|
int sampleCnt = 1,
|
|
GrMipMapped = GrMipMapped::kNo,
|
|
GrSurfaceOrigin origin = kBottomLeft_GrSurfaceOrigin,
|
|
const SkSurfaceProps* surfaceProps = nullptr,
|
|
SkBudgeted budgeted = SkBudgeted::kYes);
|
|
|
|
GrAuditTrail* auditTrail() { return &fAuditTrail; }
|
|
|
|
GrRecordingContext* asRecordingContext() override { return this; }
|
|
|
|
private:
|
|
std::unique_ptr<GrDrawingManager> fDrawingManager;
|
|
// All the GrOp-derived classes use this pool.
|
|
sk_sp<GrOpMemoryPool> fOpMemoryPool;
|
|
|
|
std::unique_ptr<GrStrikeCache> fStrikeCache;
|
|
std::unique_ptr<GrTextBlobCache> fTextBlobCache;
|
|
|
|
GrAuditTrail fAuditTrail;
|
|
|
|
typedef GrImageContext INHERITED;
|
|
};
|
|
|
|
#endif
|