2019-01-30 18:08:28 +00:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkRefCnt.h"
|
|
|
|
#include "include/private/GrImageContext.h"
|
2020-03-30 19:57:14 +00:00
|
|
|
#include "include/private/SkTArray.h"
|
2019-01-30 18:08:28 +00:00
|
|
|
|
2019-06-18 13:58:02 +00:00
|
|
|
class GrAuditTrail;
|
|
|
|
class GrBackendFormat;
|
2019-02-12 20:24:12 +00:00
|
|
|
class GrDrawingManager;
|
2019-02-15 17:52:59 +00:00
|
|
|
class GrOnFlushCallbackObject;
|
2019-02-08 15:29:20 +00:00
|
|
|
class GrOpMemoryPool;
|
2020-02-18 19:26:46 +00:00
|
|
|
class GrProgramDesc;
|
2019-12-06 18:05:49 +00:00
|
|
|
class GrProgramInfo;
|
2019-01-30 18:08:28 +00:00
|
|
|
class GrRecordingContextPriv;
|
2019-06-18 13:58:02 +00:00
|
|
|
class GrSurfaceContext;
|
|
|
|
class GrSurfaceProxy;
|
2019-02-21 21:11:41 +00:00
|
|
|
class GrTextBlobCache;
|
2019-10-22 15:58:17 +00:00
|
|
|
class SkArenaAlloc;
|
2019-01-30 18:08:28 +00:00
|
|
|
|
2019-08-21 19:21:09 +00:00
|
|
|
class GrRecordingContext : public GrImageContext {
|
2019-01-30 18:08:28 +00:00
|
|
|
public:
|
|
|
|
~GrRecordingContext() override;
|
|
|
|
|
2019-08-21 19:21:09 +00:00
|
|
|
SK_API GrBackendFormat defaultBackendFormat(SkColorType ct, GrRenderable renderable) const {
|
2019-08-13 20:16:42 +00:00
|
|
|
return INHERITED::defaultBackendFormat(ct, renderable);
|
|
|
|
}
|
2019-07-29 18:11:35 +00:00
|
|
|
|
2019-01-30 18:08:28 +00:00
|
|
|
// Provides access to functions that aren't part of the public API.
|
|
|
|
GrRecordingContextPriv priv();
|
|
|
|
const GrRecordingContextPriv priv() const;
|
|
|
|
|
2019-12-19 19:50:44 +00:00
|
|
|
// The collection of specialized memory arenas for different types of data recorded by a
|
|
|
|
// GrRecordingContext. Arenas does not maintain ownership of the pools it groups together.
|
|
|
|
class Arenas {
|
|
|
|
public:
|
|
|
|
Arenas(GrOpMemoryPool*, SkArenaAlloc*);
|
|
|
|
|
|
|
|
// For storing GrOp-derived classes recorded by a GrRecordingContext
|
|
|
|
GrOpMemoryPool* opMemoryPool() { return fOpMemoryPool; }
|
|
|
|
|
|
|
|
// For storing pipelines and other complex data as-needed by ops
|
|
|
|
SkArenaAlloc* recordTimeAllocator() { return fRecordTimeAllocator; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
GrOpMemoryPool* fOpMemoryPool;
|
|
|
|
SkArenaAlloc* fRecordTimeAllocator;
|
|
|
|
};
|
|
|
|
|
2019-01-30 18:08:28 +00:00
|
|
|
protected:
|
2020-02-18 19:26:46 +00:00
|
|
|
friend class GrRecordingContextPriv; // for hidden functions
|
|
|
|
friend class SkDeferredDisplayList; // for OwnedArenas
|
|
|
|
friend class SkDeferredDisplayListPriv; // for ProgramData
|
2019-12-19 19:50:44 +00:00
|
|
|
|
|
|
|
// Like Arenas, but preserves ownership of the underlying pools.
|
|
|
|
class OwnedArenas {
|
|
|
|
public:
|
|
|
|
OwnedArenas();
|
|
|
|
~OwnedArenas();
|
|
|
|
|
|
|
|
Arenas get();
|
|
|
|
|
|
|
|
OwnedArenas& operator=(OwnedArenas&&);
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::unique_ptr<GrOpMemoryPool> fOpMemoryPool;
|
|
|
|
std::unique_ptr<SkArenaAlloc> fRecordTimeAllocator;
|
|
|
|
};
|
2019-01-30 18:08:28 +00:00
|
|
|
|
2019-02-07 15:44:10 +00:00
|
|
|
GrRecordingContext(GrBackendApi, const GrContextOptions&, uint32_t contextID);
|
2019-12-16 14:17:25 +00:00
|
|
|
bool init(sk_sp<const GrCaps>) override;
|
2019-08-22 20:19:24 +00:00
|
|
|
void setupDrawingManager(bool sortOpsTasks, bool reduceOpsTaskSplitting);
|
2019-01-30 18:08:28 +00:00
|
|
|
|
2019-02-11 19:12:03 +00:00
|
|
|
void abandonContext() override;
|
|
|
|
|
2019-02-22 16:16:30 +00:00
|
|
|
GrDrawingManager* drawingManager();
|
2019-02-12 20:24:12 +00:00
|
|
|
|
2019-12-19 19:50:44 +00:00
|
|
|
Arenas arenas() { return fArenas.get(); }
|
2019-12-12 18:59:20 +00:00
|
|
|
// This entry point should only be used for DDL creation where we want the ops' lifetime to
|
|
|
|
// match that of the DDL.
|
2019-12-19 19:50:44 +00:00
|
|
|
OwnedArenas&& detachArenas();
|
2019-10-22 15:58:17 +00:00
|
|
|
|
2020-02-18 19:26:46 +00:00
|
|
|
struct ProgramData {
|
|
|
|
ProgramData(std::unique_ptr<const GrProgramDesc>, const GrProgramInfo*);
|
|
|
|
ProgramData(ProgramData&&); // for SkTArray
|
|
|
|
ProgramData(const ProgramData&) = delete;
|
|
|
|
~ProgramData();
|
|
|
|
|
|
|
|
const GrProgramDesc& desc() const { return *fDesc; }
|
|
|
|
const GrProgramInfo& info() const { return *fInfo; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
// TODO: store the GrProgramDescs in the 'fRecordTimeData' arena
|
|
|
|
std::unique_ptr<const GrProgramDesc> fDesc;
|
|
|
|
// The program infos should be stored in 'fRecordTimeData' so do not need to be ref
|
|
|
|
// counted or deleted in the destructor.
|
|
|
|
const GrProgramInfo* fInfo = nullptr;
|
|
|
|
};
|
|
|
|
|
2019-12-06 18:05:49 +00:00
|
|
|
// This entry point gives the recording context a chance to cache the provided
|
|
|
|
// programInfo. The DDL context takes this opportunity to store programInfos as a sidecar
|
|
|
|
// to the DDL.
|
|
|
|
virtual void recordProgramInfo(const GrProgramInfo*) {}
|
|
|
|
// This asks the recording context to return any programInfos it may have collected
|
|
|
|
// via the 'recordProgramInfo' call. It is up to the caller to ensure that the lifetime
|
|
|
|
// of the programInfos matches the intended use. For example, in DDL-record mode it
|
|
|
|
// is known that all the programInfos will have been allocated in an arena with the
|
|
|
|
// same lifetime at the DDL itself.
|
2020-02-18 19:26:46 +00:00
|
|
|
virtual void detachProgramData(SkTArray<ProgramData>*) {}
|
2019-12-06 18:05:49 +00:00
|
|
|
|
2019-02-21 21:11:41 +00:00
|
|
|
GrTextBlobCache* getTextBlobCache();
|
|
|
|
const GrTextBlobCache* getTextBlobCache() const;
|
|
|
|
|
2019-02-15 17:52:59 +00:00
|
|
|
/**
|
|
|
|
* 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*);
|
|
|
|
|
2019-06-18 13:58:02 +00:00
|
|
|
GrAuditTrail* auditTrail() { return fAuditTrail.get(); }
|
2019-02-08 15:29:20 +00:00
|
|
|
|
2019-01-30 18:08:28 +00:00
|
|
|
GrRecordingContext* asRecordingContext() override { return this; }
|
|
|
|
|
|
|
|
private:
|
2019-12-19 19:50:44 +00:00
|
|
|
OwnedArenas fArenas;
|
|
|
|
|
2019-02-22 16:16:30 +00:00
|
|
|
std::unique_ptr<GrDrawingManager> fDrawingManager;
|
2019-02-21 21:11:41 +00:00
|
|
|
|
|
|
|
std::unique_ptr<GrTextBlobCache> fTextBlobCache;
|
|
|
|
|
2019-06-18 13:58:02 +00:00
|
|
|
std::unique_ptr<GrAuditTrail> fAuditTrail;
|
2019-02-08 15:29:20 +00:00
|
|
|
|
2019-12-11 18:24:11 +00:00
|
|
|
#ifdef GR_TEST_UTILS
|
2020-02-15 18:41:30 +00:00
|
|
|
int fSuppressWarningMessages = 0;
|
2019-12-11 18:24:11 +00:00
|
|
|
#endif
|
|
|
|
|
2019-01-30 18:08:28 +00:00
|
|
|
typedef GrImageContext INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|