2017-08-30 16:06:35 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2017 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SkDeferredDisplayList_DEFINED
|
|
|
|
#define SkDeferredDisplayList_DEFINED
|
|
|
|
|
2019-05-17 20:29:34 +00:00
|
|
|
#include "include/core/SkRefCnt.h"
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkSurfaceCharacterization.h"
|
2019-05-17 20:29:34 +00:00
|
|
|
#include "include/core/SkTypes.h"
|
2017-08-30 16:06:35 +00:00
|
|
|
|
2019-05-17 20:29:34 +00:00
|
|
|
class SkDeferredDisplayListPriv;
|
2018-09-19 14:28:59 +00:00
|
|
|
|
2019-05-17 20:29:34 +00:00
|
|
|
#if SK_SUPPORT_GPU
|
2019-12-19 19:50:44 +00:00
|
|
|
#include "include/private/GrRecordingContext.h"
|
2019-05-17 20:29:34 +00:00
|
|
|
#include "include/private/SkTArray.h"
|
2018-09-19 14:28:59 +00:00
|
|
|
#include <map>
|
2019-08-01 20:14:52 +00:00
|
|
|
class GrRenderTask;
|
2020-02-21 18:38:15 +00:00
|
|
|
class GrRenderTargetProxy;
|
2019-08-22 20:19:24 +00:00
|
|
|
struct GrCCPerOpsTaskPaths;
|
2018-02-01 14:10:04 +00:00
|
|
|
#endif
|
|
|
|
|
2017-08-30 16:06:35 +00:00
|
|
|
/*
|
|
|
|
* This class contains pre-processed gpu operations that can be replayed into
|
2020-02-21 19:24:40 +00:00
|
|
|
* an SkSurface via SkSurface::draw(SkDeferredDisplayList*).
|
2017-08-30 16:06:35 +00:00
|
|
|
*/
|
2019-05-17 20:29:34 +00:00
|
|
|
class SkDeferredDisplayList {
|
2017-08-30 16:06:35 +00:00
|
|
|
public:
|
2020-02-21 19:24:40 +00:00
|
|
|
SK_API ~SkDeferredDisplayList();
|
|
|
|
|
|
|
|
SK_API const SkSurfaceCharacterization& characterization() const {
|
|
|
|
return fCharacterization;
|
|
|
|
}
|
|
|
|
|
2020-02-24 13:38:34 +00:00
|
|
|
#if SK_SUPPORT_GPU
|
|
|
|
/**
|
|
|
|
* Iterate through the programs required by the DDL.
|
|
|
|
*/
|
|
|
|
class SK_API ProgramIterator {
|
|
|
|
public:
|
|
|
|
ProgramIterator(GrContext*, SkDeferredDisplayList*);
|
|
|
|
~ProgramIterator();
|
|
|
|
|
|
|
|
void compile();
|
|
|
|
bool done() const;
|
|
|
|
void next();
|
|
|
|
|
|
|
|
private:
|
|
|
|
GrContext* fContext;
|
|
|
|
const SkTArray<GrRecordingContext::ProgramData>& fProgramData;
|
|
|
|
int fIndex;
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2020-02-21 19:24:40 +00:00
|
|
|
// Provides access to functions that aren't part of the public API.
|
|
|
|
SkDeferredDisplayListPriv priv();
|
|
|
|
const SkDeferredDisplayListPriv priv() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
friend class GrDrawingManager; // for access to 'fRenderTasks', 'fLazyProxyData', 'fArenas'
|
|
|
|
friend class SkDeferredDisplayListRecorder; // for access to 'fLazyProxyData'
|
|
|
|
friend class SkDeferredDisplayListPriv;
|
2020-02-21 18:38:15 +00:00
|
|
|
|
|
|
|
// This object is the source from which the lazy proxy backing the DDL will pull its backing
|
|
|
|
// texture when the DDL is replayed. It has to be separately ref counted bc the lazy proxy
|
|
|
|
// can outlive the DDL.
|
2020-02-21 19:24:40 +00:00
|
|
|
class LazyProxyData : public SkRefCnt {
|
|
|
|
#if SK_SUPPORT_GPU
|
2020-02-21 18:38:15 +00:00
|
|
|
public:
|
|
|
|
// Upon being replayed - this field will be filled in (by the DrawingManager) with the
|
|
|
|
// proxy backing the destination SkSurface. Note that, since there is no good place to
|
|
|
|
// clear it, it can become a dangling pointer.
|
|
|
|
GrRenderTargetProxy* fReplayDest = nullptr;
|
|
|
|
#endif
|
2020-02-21 19:24:40 +00:00
|
|
|
};
|
2020-02-21 18:38:15 +00:00
|
|
|
|
|
|
|
SK_API SkDeferredDisplayList(const SkSurfaceCharacterization& characterization,
|
|
|
|
sk_sp<LazyProxyData>);
|
2018-02-01 14:10:04 +00:00
|
|
|
|
2019-12-06 18:05:49 +00:00
|
|
|
#if SK_SUPPORT_GPU
|
2020-02-21 19:24:40 +00:00
|
|
|
const SkTArray<GrRecordingContext::ProgramData>& programData() const {
|
2020-02-18 19:26:46 +00:00
|
|
|
return fProgramData;
|
2019-12-06 18:05:49 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-11-30 16:22:14 +00:00
|
|
|
const SkSurfaceCharacterization fCharacterization;
|
2017-08-30 16:06:35 +00:00
|
|
|
|
2018-02-01 14:10:04 +00:00
|
|
|
#if SK_SUPPORT_GPU
|
2018-05-31 16:43:27 +00:00
|
|
|
// This needs to match the same type in GrCoverageCountingPathRenderer.h
|
2019-08-22 20:19:24 +00:00
|
|
|
using PendingPathsMap = std::map<uint32_t, sk_sp<GrCCPerOpsTaskPaths>>;
|
2018-05-31 16:43:27 +00:00
|
|
|
|
2019-12-12 18:59:20 +00:00
|
|
|
// These are ordered such that the destructor cleans op tasks up first (which may refer back
|
|
|
|
// to the arena and memory pool in their destructors).
|
2019-12-19 19:50:44 +00:00
|
|
|
GrRecordingContext::OwnedArenas fArenas;
|
2019-12-12 18:59:20 +00:00
|
|
|
PendingPathsMap fPendingPaths; // This is the path data from CCPR.
|
|
|
|
SkTArray<sk_sp<GrRenderTask>> fRenderTasks;
|
2019-12-06 18:05:49 +00:00
|
|
|
|
2020-02-18 19:26:46 +00:00
|
|
|
SkTArray<GrRecordingContext::ProgramData> fProgramData;
|
2020-02-21 18:38:15 +00:00
|
|
|
sk_sp<LazyProxyData> fLazyProxyData;
|
2020-02-21 19:24:40 +00:00
|
|
|
#endif
|
2017-08-30 16:06:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|