blob: 9a301308f009784884d5e91c1be036a4b96ba62f [file] [log] [blame]
robertphillips3dc6ae52015-10-20 09:54:32 -07001/*
2 * Copyright 2015 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "src/gpu/GrDrawingManager.h"
Robert Phillips69893702019-02-22 11:16:30 -05009
Adlai Hollerc2bfcff2020-11-06 15:39:36 -050010#include <algorithm>
John Stilesfbd050b2020-08-03 13:21:46 -040011#include <memory>
12
Robert Phillips4d5594d2020-02-21 14:24:40 -050013#include "include/core/SkDeferredDisplayList.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050014#include "include/gpu/GrBackendSemaphore.h"
Robert Phillipsb7bfbc22020-07-01 12:55:01 -040015#include "include/gpu/GrDirectContext.h"
16#include "include/gpu/GrRecordingContext.h"
Robert Phillips7eb0a5f2020-06-09 14:15:09 -040017#include "src/core/SkDeferredDisplayListPriv.h"
Adlai Holler78036082021-01-07 11:41:33 -050018#include "src/core/SkTInternalLList.h"
Greg Danielf91aeb22019-06-18 09:58:02 -040019#include "src/gpu/GrAuditTrail.h"
Brian Salomon9241a6d2019-10-03 13:26:54 -040020#include "src/gpu/GrClientMappedBufferManager.h"
Greg Daniele227fe42019-08-21 13:52:24 -040021#include "src/gpu/GrCopyRenderTask.h"
Robert Phillips07f675d2020-11-16 13:44:01 -050022#include "src/gpu/GrDDLTask.h"
Adlai Hollera0693042020-10-14 11:23:11 -040023#include "src/gpu/GrDirectContextPriv.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050024#include "src/gpu/GrGpu.h"
25#include "src/gpu/GrMemoryPool.h"
26#include "src/gpu/GrOnFlushResourceProvider.h"
27#include "src/gpu/GrRecordingContextPriv.h"
Greg Danielf91aeb22019-06-18 09:58:02 -040028#include "src/gpu/GrRenderTargetProxy.h"
Chris Dalton6b498102019-08-01 14:14:52 -060029#include "src/gpu/GrRenderTask.h"
Adlai Holler08f53112021-01-20 17:44:15 -050030#include "src/gpu/GrRenderTaskCluster.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050031#include "src/gpu/GrResourceAllocator.h"
32#include "src/gpu/GrResourceProvider.h"
33#include "src/gpu/GrSoftwarePathRenderer.h"
Greg Daniel46e366a2019-12-16 14:38:36 -050034#include "src/gpu/GrSurfaceContext.h"
Brian Salomoneebe7352020-12-09 16:37:04 -050035#include "src/gpu/GrSurfaceDrawContext.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050036#include "src/gpu/GrSurfaceProxyPriv.h"
Robert Phillipsfbbc3bb2020-11-16 14:58:56 -050037#include "src/gpu/GrTTopoSort.h"
Greg Daniel456f9b52020-03-05 19:14:18 +000038#include "src/gpu/GrTexture.h"
Greg Danielf91aeb22019-06-18 09:58:02 -040039#include "src/gpu/GrTextureProxy.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050040#include "src/gpu/GrTextureProxyPriv.h"
Chris Dalton3d770272019-08-14 09:24:37 -060041#include "src/gpu/GrTextureResolveRenderTask.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050042#include "src/gpu/GrTracing.h"
Greg Danielbbfec9d2019-08-20 10:56:51 -040043#include "src/gpu/GrTransferFromRenderTask.h"
Greg Danielc30f1a92019-09-06 15:28:58 -040044#include "src/gpu/GrWaitRenderTask.h"
Brian Salomonbe1084b2021-01-26 13:29:30 -050045#include "src/gpu/GrWritePixelsRenderTask.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050046#include "src/gpu/ccpr/GrCoverageCountingPathRenderer.h"
Herb Derbya08bde62020-06-12 15:46:06 -040047#include "src/gpu/text/GrSDFTOptions.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050048#include "src/image/SkSurface_Gpu.h"
robertphillips498d7ac2015-10-30 10:11:30 -070049
Robert Phillips22310d62018-09-05 11:07:21 -040050///////////////////////////////////////////////////////////////////////////////////////////////////
Robert Phillips69893702019-02-22 11:16:30 -050051GrDrawingManager::GrDrawingManager(GrRecordingContext* context,
Robert Phillips22310d62018-09-05 11:07:21 -040052 const GrPathRendererChain::Options& optionsForPathRendererChain,
Greg Danielf41b2bd2019-08-22 16:19:24 -040053 bool reduceOpsTaskSplitting)
Robert Phillips22310d62018-09-05 11:07:21 -040054 : fContext(context)
55 , fOptionsForPathRendererChain(optionsForPathRendererChain)
Robert Phillips22310d62018-09-05 11:07:21 -040056 , fPathRendererChain(nullptr)
57 , fSoftwarePathRenderer(nullptr)
Robert Phillips6db27c22019-05-01 10:43:56 -040058 , fFlushing(false)
Herb Derby082232b2020-06-10 15:08:18 -040059 , fReduceOpsTaskSplitting(reduceOpsTaskSplitting) { }
Robert Phillips22310d62018-09-05 11:07:21 -040060
robertphillips3dc6ae52015-10-20 09:54:32 -070061GrDrawingManager::~GrDrawingManager() {
Adlai Holler33432272020-11-11 13:54:37 -050062 this->closeAllTasks();
63 this->removeRenderTasks(0, fDAG.count());
robertphillips3dc6ae52015-10-20 09:54:32 -070064}
65
Robert Phillipsa9162df2019-02-11 14:12:03 -050066bool GrDrawingManager::wasAbandoned() const {
Robert Phillips9eb00022020-06-30 15:30:12 -040067 return fContext->abandoned();
robertphillips3dc6ae52015-10-20 09:54:32 -070068}
69
robertphillips68737822015-10-29 12:12:21 -070070void GrDrawingManager::freeGpuResources() {
Jim Van Verth106b5c42017-09-26 12:45:29 -040071 for (int i = fOnFlushCBObjects.count() - 1; i >= 0; --i) {
72 if (!fOnFlushCBObjects[i]->retainOnFreeGpuResources()) {
73 // it's safe to just do this because we're iterating in reverse
74 fOnFlushCBObjects.removeShuffle(i);
75 }
76 }
77
robertphillips68737822015-10-29 12:12:21 -070078 // a path renderer may be holding onto resources
robertphillips13391dd2015-10-30 05:15:11 -070079 fPathRendererChain = nullptr;
Ben Wagner9ec70c62018-07-12 13:30:47 -040080 fSoftwarePathRenderer = nullptr;
Robert Phillipse3302df2017-04-24 07:31:02 -040081}
82
Adlai Hollerc2bfcff2020-11-06 15:39:36 -050083// MDB TODO: make use of the 'proxies' parameter.
Greg Daniel9efe3862020-06-11 11:51:06 -040084bool GrDrawingManager::flush(
Adlai Hollerc2bfcff2020-11-06 15:39:36 -050085 SkSpan<GrSurfaceProxy*> proxies,
Greg Daniel9efe3862020-06-11 11:51:06 -040086 SkSurface::BackendSurfaceAccess access,
87 const GrFlushInfo& info,
88 const GrBackendSurfaceMutableState* newState) {
Brian Salomon57d2beab2018-09-10 09:35:41 -040089 GR_CREATE_TRACE_MARKER_CONTEXT("GrDrawingManager", "flush", fContext);
Brian Salomondcbb9d92017-07-19 10:53:20 -040090
robertphillips7761d612016-05-16 09:14:53 -070091 if (fFlushing || this->wasAbandoned()) {
Greg Daniel55822f12020-05-26 11:26:45 -040092 if (info.fSubmittedProc) {
93 info.fSubmittedProc(info.fSubmittedContext, false);
94 }
Greg Daniele6bfb7d2019-04-17 15:26:11 -040095 if (info.fFinishedProc) {
96 info.fFinishedProc(info.fFinishedContext);
Greg Daniela3aa75a2019-04-12 14:24:55 -040097 }
Greg Danielfe159622020-04-10 17:43:51 +000098 return false;
joshualittb8918c42015-12-18 09:59:46 -080099 }
Robert Phillips602df412019-04-08 11:10:39 -0400100
Robert Phillips38d64b02018-09-04 13:23:26 -0400101 SkDEBUGCODE(this->validate());
102
Adlai Hollerc2bfcff2020-11-06 15:39:36 -0500103 // As of now we only short-circuit if we got an explicit list of surfaces to flush.
104 if (!proxies.empty() && !info.fNumSemaphores && !info.fFinishedProc &&
Greg Danielce9f0162020-06-30 13:42:46 -0400105 access == SkSurface::BackendSurfaceAccess::kNoAccess && !newState) {
Adlai Hollerc2bfcff2020-11-06 15:39:36 -0500106 bool allUnused = std::all_of(proxies.begin(), proxies.end(), [&](GrSurfaceProxy* proxy) {
Adlai Holler33432272020-11-11 13:54:37 -0500107 bool used = std::any_of(fDAG.begin(), fDAG.end(), [&](auto& task) {
108 return task && task->isUsed(proxy);
109 });
Robert Phillips58a8ccc2021-01-11 09:07:55 -0500110 return !used;
Adlai Hollerc2bfcff2020-11-06 15:39:36 -0500111 });
112 if (allUnused) {
Greg Daniel55822f12020-05-26 11:26:45 -0400113 if (info.fSubmittedProc) {
114 info.fSubmittedProc(info.fSubmittedContext, true);
115 }
Greg Danielfe159622020-04-10 17:43:51 +0000116 return false;
Brian Salomonf9a1fdf2019-05-09 10:30:12 -0400117 }
Robert Phillips9313aa72019-04-09 18:41:27 -0400118 }
119
Robert Phillipsf8f45d92020-07-01 11:11:18 -0400120 auto direct = fContext->asDirectContext();
Adlai Holleraee25fd2020-11-06 12:34:56 -0500121 SkASSERT(direct);
Brian Salomon9241a6d2019-10-03 13:26:54 -0400122 direct->priv().clientMappedBufferManager()->process();
Robert Phillips6a6de562019-02-15 15:19:15 -0500123
124 GrGpu* gpu = direct->priv().getGpu();
Greg Daniel55822f12020-05-26 11:26:45 -0400125 // We have a non abandoned and direct GrContext. It must have a GrGpu.
126 SkASSERT(gpu);
Greg Daniela3aa75a2019-04-12 14:24:55 -0400127
joshualittb8918c42015-12-18 09:59:46 -0800128 fFlushing = true;
Robert Phillipseb35f4d2017-03-21 07:56:47 -0400129
Robert Phillips6a6de562019-02-15 15:19:15 -0500130 auto resourceProvider = direct->priv().resourceProvider();
131 auto resourceCache = direct->priv().getResourceCache();
132
Chris Dalton6b498102019-08-01 14:14:52 -0600133 // Semi-usually the GrRenderTasks are already closed at this point, but sometimes Ganesh needs
Greg Danielf41b2bd2019-08-22 16:19:24 -0400134 // to flush mid-draw. In that case, the SkGpuDevice's opsTasks won't be closed but need to be
135 // flushed anyway. Closing such opsTasks here will mean new ones will be created to replace them
Chris Dalton6b498102019-08-01 14:14:52 -0600136 // if the SkGpuDevice(s) write to them again.
Adlai Holler33432272020-11-11 13:54:37 -0500137 this->closeAllTasks();
Adlai Holler039f90c2020-11-19 15:20:31 +0000138 fActiveOpsTask = nullptr;
Robert Phillipseb35f4d2017-03-21 07:56:47 -0400139
Adlai Holler33432272020-11-11 13:54:37 -0500140 this->sortTasks();
Adlai Holler78036082021-01-07 11:41:33 -0500141
142 if (fReduceOpsTaskSplitting) {
143 this->reorderTasks();
144 }
145
Brian Salomon601ac802019-02-07 13:37:16 -0500146 if (!fCpuBufferCache) {
147 // We cache more buffers when the backend is using client side arrays. Otherwise, we
148 // expect each pool will use a CPU buffer as a staging buffer before uploading to a GPU
149 // buffer object. Each pool only requires one staging buffer at a time.
150 int maxCachedBuffers = fContext->priv().caps()->preferClientSideDynamicBuffers() ? 2 : 6;
151 fCpuBufferCache = GrBufferAllocPool::CpuBufferCache::Make(maxCachedBuffers);
Brian Salomon58f153c2018-10-18 21:51:15 -0400152 }
Robert Phillipsa4c93ac2017-05-18 11:40:04 -0400153
Robert Phillipse5f73282019-06-18 17:15:04 -0400154 GrOpFlushState flushState(gpu, resourceProvider, &fTokenTracker, fCpuBufferCache);
Robert Phillips40a29d72018-01-18 12:59:22 -0500155
Chris Daltonfe199b72017-05-05 11:26:15 -0400156 GrOnFlushResourceProvider onFlushProvider(this);
Robert Phillipseb35f4d2017-03-21 07:56:47 -0400157
Chris Dalton12658942017-10-05 19:45:25 -0600158 // Prepare any onFlush op lists (e.g. atlases).
Chris Daltonfe199b72017-05-05 11:26:15 -0400159 if (!fOnFlushCBObjects.empty()) {
Robert Phillips07f675d2020-11-16 13:44:01 -0500160 fFlushingRenderTaskIDs.reserve_back(fDAG.count());
161 for (const auto& task : fDAG) {
162 if (task) {
163 task->gatherIDs(&fFlushingRenderTaskIDs);
Adlai Holler33432272020-11-11 13:54:37 -0500164 }
165 }
Robert Phillips22310d62018-09-05 11:07:21 -0400166
Chris Daltonfe199b72017-05-05 11:26:15 -0400167 for (GrOnFlushCallbackObject* onFlushCBObject : fOnFlushCBObjects) {
Adlai Holler9902cff2020-11-11 08:51:25 -0500168 onFlushCBObject->preFlush(&onFlushProvider, fFlushingRenderTaskIDs);
Chris Daltonc4b47352019-08-23 10:10:36 -0600169 }
170 for (const auto& onFlushRenderTask : fOnFlushRenderTasks) {
171 onFlushRenderTask->makeClosed(*fContext->priv().caps());
Chris Dalton706a6ff2017-11-29 22:01:06 -0700172#ifdef SK_DEBUG
Chris Daltonc4b47352019-08-23 10:10:36 -0600173 // OnFlush callbacks are invoked during flush, and are therefore expected to handle
174 // resource allocation & usage on their own. (No deferred or lazy proxies!)
175 onFlushRenderTask->visitTargetAndSrcProxies_debugOnly(
Brian Salomon7e67dca2020-07-21 09:27:25 -0400176 [](GrSurfaceProxy* p, GrMipmapped mipMapped) {
Chris Daltonc4b47352019-08-23 10:10:36 -0600177 SkASSERT(!p->asTextureProxy() || !p->asTextureProxy()->texPriv().isDeferred());
Brian Salomonbeb7f522019-08-30 16:19:42 -0400178 SkASSERT(!p->isLazy());
Chris Dalton4ece96d2019-08-30 11:26:39 -0600179 if (p->requiresManualMSAAResolve()) {
180 // The onFlush callback is responsible for ensuring MSAA gets resolved.
181 SkASSERT(p->asRenderTargetProxy() && !p->asRenderTargetProxy()->isMSAADirty());
182 }
Brian Salomon7e67dca2020-07-21 09:27:25 -0400183 if (GrMipmapped::kYes == mipMapped) {
Chris Daltonc4b47352019-08-23 10:10:36 -0600184 // The onFlush callback is responsible for regenerating mips if needed.
Brian Salomon8c82a872020-07-21 12:09:58 -0400185 SkASSERT(p->asTextureProxy() && !p->asTextureProxy()->mipmapsAreDirty());
Chris Daltonc4b47352019-08-23 10:10:36 -0600186 }
187 });
Chris Dalton706a6ff2017-11-29 22:01:06 -0700188#endif
Chris Daltonc4b47352019-08-23 10:10:36 -0600189 onFlushRenderTask->prepare(&flushState);
Robert Phillipseb35f4d2017-03-21 07:56:47 -0400190 }
191 }
192
robertphillipsa13e2022015-11-11 12:01:09 -0800193#if 0
Brian Salomon09d994e2016-12-21 11:14:46 -0500194 // Enable this to print out verbose GrOp information
Adlai Hollerabdfd392020-10-19 09:00:36 -0400195 SkDEBUGCODE(SkDebugf("onFlush renderTasks (%d):\n", fOnFlushRenderTasks.count()));
Chris Daltonc4b47352019-08-23 10:10:36 -0600196 for (const auto& onFlushRenderTask : fOnFlushRenderTasks) {
Adlai Hollerabdfd392020-10-19 09:00:36 -0400197 SkDEBUGCODE(onFlushRenderTask->dump(/* printDependencies */ true);)
Chris Daltonc4b47352019-08-23 10:10:36 -0600198 }
Adlai Holler33432272020-11-11 13:54:37 -0500199 SkDEBUGCODE(SkDebugf("Normal renderTasks (%d):\n", fDAG.count()));
200 for (const auto& task : fDAG) {
201 SkDEBUGCODE(task->dump(/* printDependencies */ true);)
robertphillips3dc6ae52015-10-20 09:54:32 -0700202 }
robertphillipsa13e2022015-11-11 12:01:09 -0800203#endif
204
Robert Phillipseafd48a2017-11-16 07:52:08 -0500205 int startIndex, stopIndex;
206 bool flushed = false;
207
Robert Phillipsf8e25022017-11-08 15:24:31 -0500208 {
Adlai Holler33432272020-11-11 13:54:37 -0500209 GrResourceAllocator alloc(resourceProvider SkDEBUGCODE(, fDAG.count()));
210 for (int i = 0; i < fDAG.count(); ++i) {
211 if (fDAG[i]) {
212 fDAG[i]->gatherProxyIntervals(&alloc);
Robert Phillips22310d62018-09-05 11:07:21 -0400213 }
Greg Danielf41b2bd2019-08-22 16:19:24 -0400214 alloc.markEndOfOpsTask(i);
Robert Phillipsf8e25022017-11-08 15:24:31 -0500215 }
Robert Phillipsc73666f2019-04-24 08:49:48 -0400216 alloc.determineRecyclability();
Robert Phillipsd375dbf2017-09-14 12:45:25 -0400217
Greg Danielaa3dfbe2018-01-29 10:34:25 -0500218 GrResourceAllocator::AssignError error = GrResourceAllocator::AssignError::kNoError;
Chris Dalton6b498102019-08-01 14:14:52 -0600219 int numRenderTasksExecuted = 0;
Brian Salomon577aa0f2018-11-30 13:32:23 -0500220 while (alloc.assign(&startIndex, &stopIndex, &error)) {
Greg Danielaa3dfbe2018-01-29 10:34:25 -0500221 if (GrResourceAllocator::AssignError::kFailedProxyInstantiation == error) {
222 for (int i = startIndex; i < stopIndex; ++i) {
Adlai Holler33432272020-11-11 13:54:37 -0500223 GrRenderTask* renderTask = fDAG[i].get();
Chris Dalton6b498102019-08-01 14:14:52 -0600224 if (!renderTask) {
225 continue;
Robert Phillips01a91282018-07-26 08:03:04 -0400226 }
Chris Dalton6b498102019-08-01 14:14:52 -0600227 if (!renderTask->isInstantiated()) {
Greg Daniel15ecdf92019-08-30 15:35:23 -0400228 // No need to call the renderTask's handleInternalAllocationFailure
229 // since we will already skip executing the renderTask since it is not
230 // instantiated.
Chris Dalton6b498102019-08-01 14:14:52 -0600231 continue;
Robert Phillipsbbcb7f72018-05-31 11:16:19 -0400232 }
Chris Dalton6b498102019-08-01 14:14:52 -0600233 renderTask->handleInternalAllocationFailure();
Greg Danielaa3dfbe2018-01-29 10:34:25 -0500234 }
Adlai Holler96ead542020-06-26 08:50:14 -0400235 this->removeRenderTasks(startIndex, stopIndex);
Greg Danielaa3dfbe2018-01-29 10:34:25 -0500236 }
Robert Phillips4150eea2018-02-07 17:08:21 -0500237
Chris Dalton6b498102019-08-01 14:14:52 -0600238 if (this->executeRenderTasks(
239 startIndex, stopIndex, &flushState, &numRenderTasksExecuted)) {
Robert Phillipseafd48a2017-11-16 07:52:08 -0500240 flushed = true;
241 }
bsalomondc438982016-08-31 11:53:49 -0700242 }
Greg Danielc42b20b2017-10-04 10:34:49 -0400243 }
244
Chris Dalton91ab1552018-04-18 13:24:25 -0600245#ifdef SK_DEBUG
Adlai Holler33432272020-11-11 13:54:37 -0500246 for (const auto& task : fDAG) {
Adlai Holler96ead542020-06-26 08:50:14 -0400247 // All render tasks should have been cleared out by now – we only reset the array below to
248 // reclaim storage.
Adlai Holler33432272020-11-11 13:54:37 -0500249 SkASSERT(!task);
Chris Dalton91ab1552018-04-18 13:24:25 -0600250 }
251#endif
Adlai Holler25df1f72020-06-09 13:08:27 -0400252 fLastRenderTasks.reset();
Robert Phillips22310d62018-09-05 11:07:21 -0400253 fDAG.reset();
robertphillipsa13e2022015-11-11 12:01:09 -0800254
Robert Phillipsc994a932018-06-19 13:09:54 -0400255#ifdef SK_DEBUG
256 // In non-DDL mode this checks that all the flushed ops have been freed from the memory pool.
257 // When we move to partial flushes this assert will no longer be valid.
Greg Danielf41b2bd2019-08-22 16:19:24 -0400258 // In DDL mode this check is somewhat superfluous since the memory for most of the ops/opsTasks
Robert Phillipsc994a932018-06-19 13:09:54 -0400259 // will be stored in the DDL's GrOpMemoryPools.
Herb Derbye32e1ab2020-10-27 10:29:46 -0400260 GrMemoryPool* opMemoryPool = fContext->priv().opMemoryPool();
Robert Phillipsc994a932018-06-19 13:09:54 -0400261 opMemoryPool->isEmpty();
262#endif
263
Adlai Hollerc2bfcff2020-11-06 15:39:36 -0500264 gpu->executeFlushInfo(proxies, access, info, newState);
robertphillipsa13e2022015-11-11 12:01:09 -0800265
Brian Salomon57d2beab2018-09-10 09:35:41 -0400266 // Give the cache a chance to purge resources that become purgeable due to flushing.
267 if (flushed) {
Robert Phillips6a6de562019-02-15 15:19:15 -0500268 resourceCache->purgeAsNeeded();
Brian Salomon876a0172019-03-08 11:12:14 -0500269 flushed = false;
bsalomonb77a9072016-09-07 10:02:04 -0700270 }
Chris Daltonfe199b72017-05-05 11:26:15 -0400271 for (GrOnFlushCallbackObject* onFlushCBObject : fOnFlushCBObjects) {
Adlai Holler9902cff2020-11-11 08:51:25 -0500272 onFlushCBObject->postFlush(fTokenTracker.nextTokenToFlush(), fFlushingRenderTaskIDs);
Brian Salomon876a0172019-03-08 11:12:14 -0500273 flushed = true;
274 }
275 if (flushed) {
276 resourceCache->purgeAsNeeded();
Chris Daltonfe199b72017-05-05 11:26:15 -0400277 }
Chris Dalton6b498102019-08-01 14:14:52 -0600278 fFlushingRenderTaskIDs.reset();
joshualittb8918c42015-12-18 09:59:46 -0800279 fFlushing = false;
Greg Daniel51316782017-08-02 15:10:09 +0000280
Greg Danielfe159622020-04-10 17:43:51 +0000281 return true;
282}
283
284bool GrDrawingManager::submitToGpu(bool syncToCpu) {
285 if (fFlushing || this->wasAbandoned()) {
286 return false;
287 }
288
Robert Phillipsf8f45d92020-07-01 11:11:18 -0400289 auto direct = fContext->asDirectContext();
Greg Danielfe159622020-04-10 17:43:51 +0000290 if (!direct) {
291 return false; // Can't submit while DDL recording
292 }
293 GrGpu* gpu = direct->priv().getGpu();
294 return gpu->submitToGpu(syncToCpu);
robertphillips3dc6ae52015-10-20 09:54:32 -0700295}
296
Chris Dalton6b498102019-08-01 14:14:52 -0600297bool GrDrawingManager::executeRenderTasks(int startIndex, int stopIndex, GrOpFlushState* flushState,
298 int* numRenderTasksExecuted) {
Adlai Holler33432272020-11-11 13:54:37 -0500299 SkASSERT(startIndex <= stopIndex && stopIndex <= fDAG.count());
Robert Phillipseafd48a2017-11-16 07:52:08 -0500300
Robert Phillips27483912018-04-20 12:43:18 -0400301#if GR_FLUSH_TIME_OP_SPEW
Greg Danielf41b2bd2019-08-22 16:19:24 -0400302 SkDebugf("Flushing opsTask: %d to %d out of [%d, %d]\n",
Adlai Holler33432272020-11-11 13:54:37 -0500303 startIndex, stopIndex, 0, fDAG.count());
Robert Phillips27483912018-04-20 12:43:18 -0400304 for (int i = startIndex; i < stopIndex; ++i) {
Adlai Holler33432272020-11-11 13:54:37 -0500305 if (fDAG[i]) {
Robert Phillips047d5bb2021-01-08 13:39:19 -0500306 SkString label;
307 label.printf("task %d/%d", i, fDAG.count());
308 fDAG[i]->dump(label, {}, true, true);
Robert Phillips1734dd32018-08-21 13:52:09 -0400309 }
Robert Phillips27483912018-04-20 12:43:18 -0400310 }
311#endif
312
Chris Dalton6b498102019-08-01 14:14:52 -0600313 bool anyRenderTasksExecuted = false;
Robert Phillipseafd48a2017-11-16 07:52:08 -0500314
315 for (int i = startIndex; i < stopIndex; ++i) {
Adlai Holler33432272020-11-11 13:54:37 -0500316 GrRenderTask* renderTask = fDAG[i].get();
Greg Daniel15ecdf92019-08-30 15:35:23 -0400317 if (!renderTask || !renderTask->isInstantiated()) {
Robert Phillipseafd48a2017-11-16 07:52:08 -0500318 continue;
319 }
320
Chris Dalton6b498102019-08-01 14:14:52 -0600321 SkASSERT(renderTask->deferredProxiesAreInstantiated());
Robert Phillips22310d62018-09-05 11:07:21 -0400322
Chris Dalton6b498102019-08-01 14:14:52 -0600323 renderTask->prepare(flushState);
Robert Phillipseafd48a2017-11-16 07:52:08 -0500324 }
325
326 // Upload all data to the GPU
327 flushState->preExecuteDraws();
328
Greg Danield2073452018-12-07 11:20:33 -0500329 // For Vulkan, if we have too many oplists to be flushed we end up allocating a lot of resources
330 // for each command buffer associated with the oplists. If this gets too large we can cause the
331 // devices to go OOM. In practice we usually only hit this case in our tests, but to be safe we
332 // put a cap on the number of oplists we will execute before flushing to the GPU to relieve some
333 // memory pressure.
Chris Dalton6b498102019-08-01 14:14:52 -0600334 static constexpr int kMaxRenderTasksBeforeFlush = 100;
Greg Danield2073452018-12-07 11:20:33 -0500335
Chris Daltonc4b47352019-08-23 10:10:36 -0600336 // Execute the onFlush renderTasks first, if any.
337 for (sk_sp<GrRenderTask>& onFlushRenderTask : fOnFlushRenderTasks) {
338 if (!onFlushRenderTask->execute(flushState)) {
339 SkDebugf("WARNING: onFlushRenderTask failed to execute.\n");
Robert Phillipseafd48a2017-11-16 07:52:08 -0500340 }
Chris Daltonc4b47352019-08-23 10:10:36 -0600341 SkASSERT(onFlushRenderTask->unique());
Adlai Hollerd71b7b02020-06-08 15:55:00 -0400342 onFlushRenderTask->disown(this);
Chris Daltonc4b47352019-08-23 10:10:36 -0600343 onFlushRenderTask = nullptr;
Chris Dalton6b498102019-08-01 14:14:52 -0600344 (*numRenderTasksExecuted)++;
345 if (*numRenderTasksExecuted >= kMaxRenderTasksBeforeFlush) {
Greg Danielfe159622020-04-10 17:43:51 +0000346 flushState->gpu()->submitToGpu(false);
Chris Dalton6b498102019-08-01 14:14:52 -0600347 *numRenderTasksExecuted = 0;
Greg Danield2073452018-12-07 11:20:33 -0500348 }
Robert Phillipseafd48a2017-11-16 07:52:08 -0500349 }
Chris Daltonc4b47352019-08-23 10:10:36 -0600350 fOnFlushRenderTasks.reset();
Robert Phillipseafd48a2017-11-16 07:52:08 -0500351
352 // Execute the normal op lists.
353 for (int i = startIndex; i < stopIndex; ++i) {
Adlai Holler33432272020-11-11 13:54:37 -0500354 GrRenderTask* renderTask = fDAG[i].get();
Greg Daniel15ecdf92019-08-30 15:35:23 -0400355 if (!renderTask || !renderTask->isInstantiated()) {
Robert Phillipseafd48a2017-11-16 07:52:08 -0500356 continue;
357 }
358
Greg Daniel15ecdf92019-08-30 15:35:23 -0400359 if (renderTask->execute(flushState)) {
Chris Dalton6b498102019-08-01 14:14:52 -0600360 anyRenderTasksExecuted = true;
Robert Phillipseafd48a2017-11-16 07:52:08 -0500361 }
Chris Dalton6b498102019-08-01 14:14:52 -0600362 (*numRenderTasksExecuted)++;
363 if (*numRenderTasksExecuted >= kMaxRenderTasksBeforeFlush) {
Greg Danielfe159622020-04-10 17:43:51 +0000364 flushState->gpu()->submitToGpu(false);
Chris Dalton6b498102019-08-01 14:14:52 -0600365 *numRenderTasksExecuted = 0;
Greg Danield2073452018-12-07 11:20:33 -0500366 }
Robert Phillipseafd48a2017-11-16 07:52:08 -0500367 }
368
Greg Daniel2d41d0d2019-08-26 11:08:51 -0400369 SkASSERT(!flushState->opsRenderPass());
Robert Phillips40a29d72018-01-18 12:59:22 -0500370 SkASSERT(fTokenTracker.nextDrawToken() == fTokenTracker.nextTokenToFlush());
Robert Phillipseafd48a2017-11-16 07:52:08 -0500371
Chris Dalton6b498102019-08-01 14:14:52 -0600372 // We reset the flush state before the RenderTasks so that the last resources to be freed are
373 // those that are written to in the RenderTasks. This helps to make sure the most recently used
374 // resources are the last to be purged by the resource cache.
Robert Phillipseafd48a2017-11-16 07:52:08 -0500375 flushState->reset();
376
Adlai Hollerd71b7b02020-06-08 15:55:00 -0400377 this->removeRenderTasks(startIndex, stopIndex);
Robert Phillipseafd48a2017-11-16 07:52:08 -0500378
Chris Dalton6b498102019-08-01 14:14:52 -0600379 return anyRenderTasksExecuted;
Robert Phillipseafd48a2017-11-16 07:52:08 -0500380}
381
Adlai Hollerd71b7b02020-06-08 15:55:00 -0400382void GrDrawingManager::removeRenderTasks(int startIndex, int stopIndex) {
383 for (int i = startIndex; i < stopIndex; ++i) {
Adlai Holler33432272020-11-11 13:54:37 -0500384 GrRenderTask* task = fDAG[i].get();
Adlai Hollerd71b7b02020-06-08 15:55:00 -0400385 if (!task) {
386 continue;
387 }
Robert Phillips07f675d2020-11-16 13:44:01 -0500388 if (!task->unique() || task->requiresExplicitCleanup()) {
389 // TODO: Eventually uniqueness should be guaranteed: http://skbug.com/7111.
390 // DDLs, however, will always require an explicit notification for when they
391 // can clean up resources.
Adlai Hollerd71b7b02020-06-08 15:55:00 -0400392 task->endFlush(this);
393 }
394 task->disown(this);
Adlai Holler33432272020-11-11 13:54:37 -0500395
396 // This doesn't cleanup any referring pointers (e.g. dependency pointers in the DAG).
397 // It works right now bc this is only called after the topological sort is complete
398 // (so the dangling pointers aren't used).
399 fDAG[i] = nullptr;
Adlai Hollerd71b7b02020-06-08 15:55:00 -0400400 }
Adlai Holler33432272020-11-11 13:54:37 -0500401}
402
403void GrDrawingManager::sortTasks() {
Robert Phillipsfbbc3bb2020-11-16 14:58:56 -0500404 if (!GrTTopoSort<GrRenderTask, GrRenderTask::TopoSortTraits>(&fDAG)) {
Adlai Holler33432272020-11-11 13:54:37 -0500405 SkDEBUGFAIL("Render task topo sort failed.");
406 return;
407 }
408
409#ifdef SK_DEBUG
410 // This block checks for any unnecessary splits in the opsTasks. If two sequential opsTasks
411 // share the same backing GrSurfaceProxy it means the opsTask was artificially split.
412 if (!fDAG.empty()) {
413 GrOpsTask* prevOpsTask = fDAG[0]->asOpsTask();
414 for (int i = 1; i < fDAG.count(); ++i) {
415 GrOpsTask* curOpsTask = fDAG[i]->asOpsTask();
416
417 if (prevOpsTask && curOpsTask) {
Brian Salomon982127b2021-01-21 10:43:35 -0500418 SkASSERT(prevOpsTask->target(0) != curOpsTask->target(0));
Adlai Holler33432272020-11-11 13:54:37 -0500419 }
420
421 prevOpsTask = curOpsTask;
422 }
423 }
424#endif
425}
426
Adlai Holler78036082021-01-07 11:41:33 -0500427// Reorder the array to match the llist without reffing & unreffing sk_sp's.
Adlai Holler69c57e42021-01-25 15:44:26 +0000428// Both args must contain the same objects.
Adlai Holler78036082021-01-07 11:41:33 -0500429// This is basically a shim because clustering uses LList but the rest of drawmgr uses array.
430template <typename T>
431static void reorder_array_by_llist(const SkTInternalLList<T>& llist, SkTArray<sk_sp<T>>* array) {
432 int i = 0;
433 for (T* t : llist) {
Adlai Holler69c57e42021-01-25 15:44:26 +0000434 // Release the pointer that used to live here so it doesn't get unreffed.
435 [[maybe_unused]] T* old = array->at(i).release();
Adlai Holler78036082021-01-07 11:41:33 -0500436 array->at(i++).reset(t);
437 }
Adlai Holler69c57e42021-01-25 15:44:26 +0000438 SkASSERT(i == array->count());
Adlai Holler78036082021-01-07 11:41:33 -0500439}
440
441void GrDrawingManager::reorderTasks() {
442 SkASSERT(fReduceOpsTaskSplitting);
443 SkTInternalLList<GrRenderTask> llist;
Adlai Holler08f53112021-01-20 17:44:15 -0500444 bool clustered = GrClusterRenderTasks(fDAG, &llist);
Adlai Holler78036082021-01-07 11:41:33 -0500445 if (!clustered) {
446 return;
447 }
448 // TODO: Handle case where proposed order would blow our memory budget.
449 // Such cases are currently pathological, so we could just return here and keep current order.
450 reorder_array_by_llist(llist, &fDAG);
Adlai Holler93439d92021-01-26 09:20:39 -0500451
452 int newCount = 0;
453 for (int i = 0; i < fDAG.count(); i++) {
454 sk_sp<GrRenderTask>& task = fDAG[i];
455 if (auto opsTask = task->asOpsTask()) {
456 size_t remaining = fDAG.size() - i - 1;
457 SkSpan<sk_sp<GrRenderTask>> nextTasks{fDAG.end() - remaining, remaining};
458 int removeCount = opsTask->mergeFrom(nextTasks);
459 for (const auto& removed : nextTasks.first(removeCount)) {
460 removed->disown(this);
461 }
462 i += removeCount;
463 }
464 fDAG[newCount++] = std::move(task);
465 }
466 fDAG.resize_back(newCount);
Adlai Holler78036082021-01-07 11:41:33 -0500467}
468
Adlai Holler33432272020-11-11 13:54:37 -0500469void GrDrawingManager::closeAllTasks() {
470 const GrCaps& caps = *fContext->priv().caps();
471 for (auto& task : fDAG) {
472 if (task) {
473 task->makeClosed(caps);
474 }
475 }
476}
477
478GrRenderTask* GrDrawingManager::insertTaskBeforeLast(sk_sp<GrRenderTask> task) {
479 SkASSERT(!fDAG.empty());
480 if (!task) {
481 return nullptr;
482 }
483 // Release 'fDAG.back()' and grab the raw pointer, in case the SkTArray grows
484 // and reallocates during emplace_back.
485 // TODO: Either use std::vector that can do this for us, or use SkSTArray to get the
486 // perf win.
487 fDAG.emplace_back(fDAG.back().release());
488 return (fDAG[fDAG.count() - 2] = std::move(task)).get();
489}
490
491GrRenderTask* GrDrawingManager::appendTask(sk_sp<GrRenderTask> task) {
492 if (!task) {
493 return nullptr;
494 }
495 return fDAG.push_back(std::move(task)).get();
496}
497
Robert Phillips7eb0a5f2020-06-09 14:15:09 -0400498static void resolve_and_mipmap(GrGpu* gpu, GrSurfaceProxy* proxy) {
499 if (!proxy->isInstantiated()) {
500 return;
501 }
502
503 // In the flushSurfaces case, we need to resolve MSAA immediately after flush. This is
504 // because clients expect the flushed surface's backing texture to be fully resolved
505 // upon return.
506 if (proxy->requiresManualMSAAResolve()) {
507 auto* rtProxy = proxy->asRenderTargetProxy();
508 SkASSERT(rtProxy);
509 if (rtProxy->isMSAADirty()) {
510 SkASSERT(rtProxy->peekRenderTarget());
Jim Van Verthbb61fe32020-07-07 16:39:04 -0400511 gpu->resolveRenderTarget(rtProxy->peekRenderTarget(), rtProxy->msaaDirtyRect());
512 gpu->submitToGpu(false);
Robert Phillips7eb0a5f2020-06-09 14:15:09 -0400513 rtProxy->markMSAAResolved();
514 }
515 }
516 // If, after a flush, any of the proxies of interest have dirty mipmaps, regenerate them in
517 // case their backend textures are being stolen.
518 // (This special case is exercised by the ReimportImageTextureWithMipLevels test.)
519 // FIXME: It may be more ideal to plumb down a "we're going to steal the backends" flag.
520 if (auto* textureProxy = proxy->asTextureProxy()) {
Brian Salomon8c82a872020-07-21 12:09:58 -0400521 if (textureProxy->mipmapsAreDirty()) {
Robert Phillips7eb0a5f2020-06-09 14:15:09 -0400522 SkASSERT(textureProxy->peekTexture());
523 gpu->regenerateMipMapLevels(textureProxy->peekTexture());
Brian Salomon8c82a872020-07-21 12:09:58 -0400524 textureProxy->markMipmapsClean();
Robert Phillips7eb0a5f2020-06-09 14:15:09 -0400525 }
526 }
527}
528
Greg Daniel9efe3862020-06-11 11:51:06 -0400529GrSemaphoresSubmitted GrDrawingManager::flushSurfaces(
Adlai Hollerc2bfcff2020-11-06 15:39:36 -0500530 SkSpan<GrSurfaceProxy*> proxies,
Greg Daniel9efe3862020-06-11 11:51:06 -0400531 SkSurface::BackendSurfaceAccess access,
532 const GrFlushInfo& info,
533 const GrBackendSurfaceMutableState* newState) {
bsalomon6a2b1942016-09-08 11:28:59 -0700534 if (this->wasAbandoned()) {
Greg Daniel55822f12020-05-26 11:26:45 -0400535 if (info.fSubmittedProc) {
536 info.fSubmittedProc(info.fSubmittedContext, false);
537 }
538 if (info.fFinishedProc) {
539 info.fFinishedProc(info.fFinishedContext);
540 }
Greg Daniel51316782017-08-02 15:10:09 +0000541 return GrSemaphoresSubmitted::kNo;
bsalomon6a2b1942016-09-08 11:28:59 -0700542 }
Robert Phillips38d64b02018-09-04 13:23:26 -0400543 SkDEBUGCODE(this->validate());
bsalomon6a2b1942016-09-08 11:28:59 -0700544
Robert Phillipsf8f45d92020-07-01 11:11:18 -0400545 auto direct = fContext->asDirectContext();
Adlai Holleraee25fd2020-11-06 12:34:56 -0500546 SkASSERT(direct);
Robert Phillips6a6de562019-02-15 15:19:15 -0500547 GrGpu* gpu = direct->priv().getGpu();
Greg Daniel55822f12020-05-26 11:26:45 -0400548 // We have a non abandoned and direct GrContext. It must have a GrGpu.
549 SkASSERT(gpu);
Robert Phillips874b5352018-03-16 08:48:24 -0400550
Robert Phillipsacc10fa2019-04-01 09:50:20 -0400551 // TODO: It is important to upgrade the drawingmanager to just flushing the
Brian Salomonf9a1fdf2019-05-09 10:30:12 -0400552 // portion of the DAG required by 'proxies' in order to restore some of the
Robert Phillipsacc10fa2019-04-01 09:50:20 -0400553 // semantics of this method.
Adlai Hollerc2bfcff2020-11-06 15:39:36 -0500554 bool didFlush = this->flush(proxies, access, info, newState);
555 for (GrSurfaceProxy* proxy : proxies) {
556 resolve_and_mipmap(gpu, proxy);
bsalomon6a2b1942016-09-08 11:28:59 -0700557 }
Robert Phillips38d64b02018-09-04 13:23:26 -0400558
559 SkDEBUGCODE(this->validate());
Greg Danielfe159622020-04-10 17:43:51 +0000560
Greg Daniel04283f32020-05-20 13:16:00 -0400561 if (!didFlush || (!direct->priv().caps()->semaphoreSupport() && info.fNumSemaphores)) {
Greg Danielfe159622020-04-10 17:43:51 +0000562 return GrSemaphoresSubmitted::kNo;
563 }
564 return GrSemaphoresSubmitted::kYes;
bsalomon6a2b1942016-09-08 11:28:59 -0700565}
566
Chris Daltonfe199b72017-05-05 11:26:15 -0400567void GrDrawingManager::addOnFlushCallbackObject(GrOnFlushCallbackObject* onFlushCBObject) {
568 fOnFlushCBObjects.push_back(onFlushCBObject);
Robert Phillipseb35f4d2017-03-21 07:56:47 -0400569}
570
Robert Phillipsdbaf3172019-02-06 15:12:53 -0500571#if GR_TEST_UTILS
572void GrDrawingManager::testingOnly_removeOnFlushCallbackObject(GrOnFlushCallbackObject* cb) {
573 int n = std::find(fOnFlushCBObjects.begin(), fOnFlushCBObjects.end(), cb) -
574 fOnFlushCBObjects.begin();
575 SkASSERT(n < fOnFlushCBObjects.count());
576 fOnFlushCBObjects.removeShuffle(n);
577}
578#endif
579
Adlai Hollerd71b7b02020-06-08 15:55:00 -0400580void GrDrawingManager::setLastRenderTask(const GrSurfaceProxy* proxy, GrRenderTask* task) {
581#ifdef SK_DEBUG
Robert Phillips07f675d2020-11-16 13:44:01 -0500582 if (auto prior = this->getLastRenderTask(proxy)) {
583 SkASSERT(prior->isClosed() || prior == task);
Adlai Hollerd71b7b02020-06-08 15:55:00 -0400584 }
585#endif
Adlai Holler25df1f72020-06-09 13:08:27 -0400586 uint32_t key = proxy->uniqueID().asUInt();
587 if (task) {
588 fLastRenderTasks.set(key, task);
589 } else if (fLastRenderTasks.find(key)) {
590 fLastRenderTasks.remove(key);
591 }
Adlai Hollerd71b7b02020-06-08 15:55:00 -0400592}
593
594GrRenderTask* GrDrawingManager::getLastRenderTask(const GrSurfaceProxy* proxy) const {
595 auto entry = fLastRenderTasks.find(proxy->uniqueID().asUInt());
596 return entry ? *entry : nullptr;
597}
598
599GrOpsTask* GrDrawingManager::getLastOpsTask(const GrSurfaceProxy* proxy) const {
600 GrRenderTask* task = this->getLastRenderTask(proxy);
601 return task ? task->asOpsTask() : nullptr;
602}
603
604
Chris Dalton6b498102019-08-01 14:14:52 -0600605void GrDrawingManager::moveRenderTasksToDDL(SkDeferredDisplayList* ddl) {
Robert Phillips38d64b02018-09-04 13:23:26 -0400606 SkDEBUGCODE(this->validate());
607
Chris Dalton6b498102019-08-01 14:14:52 -0600608 // no renderTask should receive a new command after this
Adlai Holler33432272020-11-11 13:54:37 -0500609 this->closeAllTasks();
Adlai Holler039f90c2020-11-19 15:20:31 +0000610 fActiveOpsTask = nullptr;
Robert Phillips7a137052018-02-01 11:23:12 -0500611
Robert Phillips07f675d2020-11-16 13:44:01 -0500612 this->sortTasks();
613
Adlai Holler33432272020-11-11 13:54:37 -0500614 fDAG.swap(ddl->fRenderTasks);
615 SkASSERT(fDAG.empty());
Robert Phillips867ce8f2018-06-21 10:28:36 -0400616
Robert Phillips19f466d2020-02-26 10:27:07 -0500617 for (auto& renderTask : ddl->fRenderTasks) {
Adlai Hollerd71b7b02020-06-08 15:55:00 -0400618 renderTask->disown(this);
Robert Phillips29f38542019-10-16 09:20:25 -0400619 renderTask->prePrepare(fContext);
Robert Phillips7327c9d2019-10-08 16:32:56 -0400620 }
621
Michael Ludwig2c316bd2019-12-19 14:50:44 -0500622 ddl->fArenas = std::move(fContext->priv().detachArenas());
Robert Phillips61fc7992019-10-22 11:58:17 -0400623
Robert Phillipsf6a0b452020-02-18 14:26:46 -0500624 fContext->priv().detachProgramData(&ddl->fProgramData);
Robert Phillips576b6a12019-12-06 13:05:49 -0500625
Robert Phillips774168e2018-05-31 12:43:27 -0400626 if (fPathRendererChain) {
627 if (auto ccpr = fPathRendererChain->getCoverageCountingPathRenderer()) {
628 ddl->fPendingPaths = ccpr->detachPendingPaths();
629 }
630 }
Robert Phillips38d64b02018-09-04 13:23:26 -0400631
632 SkDEBUGCODE(this->validate());
Robert Phillips62000362018-02-01 09:10:04 -0500633}
634
Robert Phillips07f675d2020-11-16 13:44:01 -0500635void GrDrawingManager::createDDLTask(sk_sp<const SkDeferredDisplayList> ddl,
Robert Phillipseb54bb52021-01-08 17:20:18 -0500636 sk_sp<GrRenderTargetProxy> newDest,
Robert Phillips88b29612020-11-16 15:15:08 -0500637 SkIPoint offset) {
Robert Phillips38d64b02018-09-04 13:23:26 -0400638 SkDEBUGCODE(this->validate());
639
Adlai Holler039f90c2020-11-19 15:20:31 +0000640 if (fActiveOpsTask) {
641 // This is a temporary fix for the partial-MDB world. In that world we're not
642 // reordering so ops that (in the single opsTask world) would've just glommed onto the
643 // end of the single opsTask but referred to a far earlier RT need to appear in their
644 // own opsTask.
645 fActiveOpsTask->makeClosed(*fContext->priv().caps());
646 fActiveOpsTask = nullptr;
Robert Phillips38d64b02018-09-04 13:23:26 -0400647 }
648
Robert Phillips07f675d2020-11-16 13:44:01 -0500649 // Propagate the DDL proxy's state information to the replay target.
Robert Phillips7eb0a5f2020-06-09 14:15:09 -0400650 if (ddl->priv().targetProxy()->isMSAADirty()) {
Brian Salomon982127b2021-01-21 10:43:35 -0500651 auto nativeRect = GrNativeRect::MakeIRectRelativeTo(
652 ddl->characterization().origin(),
653 ddl->priv().targetProxy()->backingStoreDimensions().height(),
654 ddl->priv().targetProxy()->msaaDirtyRect());
655 newDest->markMSAADirty(nativeRect);
Robert Phillips7eb0a5f2020-06-09 14:15:09 -0400656 }
657 GrTextureProxy* newTextureProxy = newDest->asTextureProxy();
Brian Salomon8c82a872020-07-21 12:09:58 -0400658 if (newTextureProxy && GrMipmapped::kYes == newTextureProxy->mipmapped()) {
659 newTextureProxy->markMipmapsDirty();
Robert Phillips7eb0a5f2020-06-09 14:15:09 -0400660 }
661
Robert Phillips62000362018-02-01 09:10:04 -0500662 // Here we jam the proxy that backs the current replay SkSurface into the LazyProxyData.
Robert Phillips07f675d2020-11-16 13:44:01 -0500663 // The lazy proxy that references it (in the DDL opsTasks) will then steal its GrTexture.
Robert Phillipseb54bb52021-01-08 17:20:18 -0500664 ddl->fLazyProxyData->fReplayDest = newDest.get();
Robert Phillips774168e2018-05-31 12:43:27 -0400665
666 if (ddl->fPendingPaths.size()) {
667 GrCoverageCountingPathRenderer* ccpr = this->getCoverageCountingPathRenderer();
668
669 ccpr->mergePendingPaths(ddl->fPendingPaths);
670 }
Robert Phillips22310d62018-09-05 11:07:21 -0400671
Robert Phillips07f675d2020-11-16 13:44:01 -0500672 // Add a task to handle drawing and lifetime management of the DDL.
673 SkDEBUGCODE(auto ddlTask =) this->appendTask(sk_make_sp<GrDDLTask>(this,
Robert Phillipseb54bb52021-01-08 17:20:18 -0500674 std::move(newDest),
Robert Phillips88b29612020-11-16 15:15:08 -0500675 std::move(ddl),
676 offset));
Robert Phillips07f675d2020-11-16 13:44:01 -0500677 SkASSERT(ddlTask->isClosed());
Adlai Holler7580ad42020-06-24 13:45:25 -0400678
Robert Phillips38d64b02018-09-04 13:23:26 -0400679 SkDEBUGCODE(this->validate());
Robert Phillips62000362018-02-01 09:10:04 -0500680}
681
Robert Phillips38d64b02018-09-04 13:23:26 -0400682#ifdef SK_DEBUG
683void GrDrawingManager::validate() const {
Adlai Holler4ef108e2020-12-30 16:21:13 +0000684 if (fActiveOpsTask) {
685 SkASSERT(!fDAG.empty());
686 SkASSERT(!fActiveOpsTask->isClosed());
687 SkASSERT(fActiveOpsTask == fDAG.back().get());
688 }
Adlai Holler039f90c2020-11-19 15:20:31 +0000689
Adlai Holler4ef108e2020-12-30 16:21:13 +0000690 for (int i = 0; i < fDAG.count(); ++i) {
691 if (fActiveOpsTask != fDAG[i].get()) {
692 // The resolveTask associated with the activeTask remains open for as long as the
693 // activeTask does.
694 bool isActiveResolveTask =
695 fActiveOpsTask && fActiveOpsTask->fTextureResolveTask == fDAG[i].get();
696 SkASSERT(isActiveResolveTask || fDAG[i]->isClosed());
Adlai Holler76893192020-12-22 19:41:19 +0000697 }
Adlai Holler4ef108e2020-12-30 16:21:13 +0000698 }
Adlai Holler76893192020-12-22 19:41:19 +0000699
Adlai Holler4ef108e2020-12-30 16:21:13 +0000700 if (!fDAG.empty() && !fDAG.back()->isClosed()) {
701 SkASSERT(fActiveOpsTask == fDAG.back().get());
Robert Phillips38d64b02018-09-04 13:23:26 -0400702 }
703}
704#endif
705
Adlai Holler4ef108e2020-12-30 16:21:13 +0000706void GrDrawingManager::closeActiveOpsTask() {
707 if (fActiveOpsTask) {
708 // This is a temporary fix for the partial-MDB world. In that world we're not
Adlai Holler039f90c2020-11-19 15:20:31 +0000709 // reordering so ops that (in the single opsTask world) would've just glommed onto the
Greg Danielf41b2bd2019-08-22 16:19:24 -0400710 // end of the single opsTask but referred to a far earlier RT need to appear in their
711 // own opsTask.
Adlai Holler039f90c2020-11-19 15:20:31 +0000712 fActiveOpsTask->makeClosed(*fContext->priv().caps());
713 fActiveOpsTask = nullptr;
robertphillips3dc6ae52015-10-20 09:54:32 -0700714 }
Chris Dalton5fe99772019-08-06 11:57:39 -0600715}
716
Greg Daniel16f5c652019-10-29 11:26:01 -0400717sk_sp<GrOpsTask> GrDrawingManager::newOpsTask(GrSurfaceProxyView surfaceView,
Robert Phillips19006652020-11-19 14:20:57 -0500718 bool flushTimeOpsTask) {
Chris Dalton5fe99772019-08-06 11:57:39 -0600719 SkDEBUGCODE(this->validate());
720 SkASSERT(fContext);
721
Adlai Holler4ef108e2020-12-30 16:21:13 +0000722 this->closeActiveOpsTask();
robertphillips3dc6ae52015-10-20 09:54:32 -0700723
Adlai Hollerd71b7b02020-06-08 15:55:00 -0400724 sk_sp<GrOpsTask> opsTask(new GrOpsTask(this, fContext->priv().arenas(),
Michael Ludwigd0840ec2019-12-12 09:48:38 -0500725 std::move(surfaceView),
726 fContext->priv().auditTrail()));
Brian Salomon982127b2021-01-21 10:43:35 -0500727 SkASSERT(this->getLastRenderTask(opsTask->target(0)) == opsTask.get());
robertphillips3dc6ae52015-10-20 09:54:32 -0700728
Robert Phillips19006652020-11-19 14:20:57 -0500729 if (flushTimeOpsTask) {
730 fOnFlushRenderTasks.push_back(opsTask);
731 } else {
Adlai Holler33432272020-11-11 13:54:37 -0500732 this->appendTask(opsTask);
Adlai Holler039f90c2020-11-19 15:20:31 +0000733
Adlai Holler4ef108e2020-12-30 16:21:13 +0000734 fActiveOpsTask = opsTask.get();
Robert Phillips941d1442017-06-14 16:37:02 -0400735 }
robertphillips3dc6ae52015-10-20 09:54:32 -0700736
Robert Phillips38d64b02018-09-04 13:23:26 -0400737 SkDEBUGCODE(this->validate());
Greg Danielf41b2bd2019-08-22 16:19:24 -0400738 return opsTask;
robertphillips3dc6ae52015-10-20 09:54:32 -0700739}
740
Adlai Holler039f90c2020-11-19 15:20:31 +0000741GrTextureResolveRenderTask* GrDrawingManager::newTextureResolveRenderTask(const GrCaps& caps) {
Chris Dalton6aeb8e82019-08-27 11:52:19 -0600742 // Unlike in the "new opsTask" case, we do not want to close the active opsTask, nor (if we are
Adlai Holler039f90c2020-11-19 15:20:31 +0000743 // in sorting and opsTask reduction mode) the render tasks that depend on any proxy's current
Greg Danielf41b2bd2019-08-22 16:19:24 -0400744 // state. This is because those opsTasks can still receive new ops and because if they refer to
Adlai Holler039f90c2020-11-19 15:20:31 +0000745 // the mipmapped version of 'proxy', they will then come to depend on the render task being
Chris Dalton4ece96d2019-08-30 11:26:39 -0600746 // created here.
Chris Dalton6aeb8e82019-08-27 11:52:19 -0600747 //
Adlai Holler039f90c2020-11-19 15:20:31 +0000748 // Add the new textureResolveTask before the fActiveOpsTask (if not in
749 // sorting/opsTask-splitting-reduction mode) because it will depend upon this resolve task.
Chris Dalton3d770272019-08-14 09:24:37 -0600750 // NOTE: Putting it here will also reduce the amount of work required by the topological sort.
Adlai Holler33432272020-11-11 13:54:37 -0500751 GrRenderTask* task = this->insertTaskBeforeLast(sk_make_sp<GrTextureResolveRenderTask>());
752 return static_cast<GrTextureResolveRenderTask*>(task);
Chris Dalton3d770272019-08-14 09:24:37 -0600753}
754
Greg Danielc30f1a92019-09-06 15:28:58 -0400755void GrDrawingManager::newWaitRenderTask(sk_sp<GrSurfaceProxy> proxy,
Greg Daniel301015c2019-11-18 14:06:46 -0500756 std::unique_ptr<std::unique_ptr<GrSemaphore>[]> semaphores,
Greg Danielc30f1a92019-09-06 15:28:58 -0400757 int numSemaphores) {
758 SkDEBUGCODE(this->validate());
759 SkASSERT(fContext);
760
761 const GrCaps& caps = *fContext->priv().caps();
762
Greg Daniel16f5c652019-10-29 11:26:01 -0400763 sk_sp<GrWaitRenderTask> waitTask = sk_make_sp<GrWaitRenderTask>(GrSurfaceProxyView(proxy),
764 std::move(semaphores),
Greg Danielc30f1a92019-09-06 15:28:58 -0400765 numSemaphores);
Greg Danielc30f1a92019-09-06 15:28:58 -0400766
Brian Salomon982127b2021-01-21 10:43:35 -0500767 if (fActiveOpsTask && (fActiveOpsTask->target(0) == proxy.get())) {
Adlai Holler4ef108e2020-12-30 16:21:13 +0000768 SkASSERT(this->getLastRenderTask(proxy.get()) == fActiveOpsTask);
769 this->insertTaskBeforeLast(waitTask);
770 // In this case we keep the current renderTask open but just insert the new waitTask
771 // before it in the list. The waitTask will never need to trigger any resolves or mip
772 // map generation which is the main advantage of going through the proxy version.
773 // Additionally we would've had to temporarily set the wait task as the lastRenderTask
774 // on the proxy, add the dependency, and then reset the lastRenderTask to
775 // fActiveOpsTask. Additionally we make the waitTask depend on all of fActiveOpsTask
776 // dependencies so that we don't unnecessarily reorder the waitTask before them.
777 // Note: Any previous Ops already in fActiveOpsTask will get blocked by the wait
778 // semaphore even though they don't need to be for correctness.
779
780 // Make sure we add the dependencies of fActiveOpsTask to waitTask first or else we'll
781 // get a circular self dependency of waitTask on waitTask.
782 waitTask->addDependenciesFromOtherTask(fActiveOpsTask);
783 fActiveOpsTask->addDependency(waitTask.get());
Adlai Holler76893192020-12-22 19:41:19 +0000784 } else {
Adlai Holler4ef108e2020-12-30 16:21:13 +0000785 // In this case we just close the previous RenderTask and start and append the waitTask
786 // to the DAG. Since it is the last task now we call setLastRenderTask on the proxy. If
787 // there is a lastTask on the proxy we make waitTask depend on that task. This
788 // dependency isn't strictly needed but it does keep the DAG from reordering the
789 // waitTask earlier and blocking more tasks.
790 if (GrRenderTask* lastTask = this->getLastRenderTask(proxy.get())) {
791 waitTask->addDependency(lastTask);
Adlai Holler76893192020-12-22 19:41:19 +0000792 }
Adlai Holler4ef108e2020-12-30 16:21:13 +0000793 this->setLastRenderTask(proxy.get(), waitTask.get());
794 this->closeActiveOpsTask();
795 this->appendTask(waitTask);
Greg Danielc30f1a92019-09-06 15:28:58 -0400796 }
797 waitTask->makeClosed(caps);
798
799 SkDEBUGCODE(this->validate());
800}
801
Greg Danielbbfec9d2019-08-20 10:56:51 -0400802void GrDrawingManager::newTransferFromRenderTask(sk_sp<GrSurfaceProxy> srcProxy,
803 const SkIRect& srcRect,
804 GrColorType surfaceColorType,
805 GrColorType dstColorType,
806 sk_sp<GrGpuBuffer> dstBuffer,
807 size_t dstOffset) {
808 SkDEBUGCODE(this->validate());
809 SkASSERT(fContext);
Adlai Holler4ef108e2020-12-30 16:21:13 +0000810 this->closeActiveOpsTask();
Greg Danielbbfec9d2019-08-20 10:56:51 -0400811
Adlai Holler33432272020-11-11 13:54:37 -0500812 GrRenderTask* task = this->appendTask(sk_make_sp<GrTransferFromRenderTask>(
Adlai Hollerd71b7b02020-06-08 15:55:00 -0400813 srcProxy, srcRect, surfaceColorType, dstColorType,
814 std::move(dstBuffer), dstOffset));
Greg Danielbbfec9d2019-08-20 10:56:51 -0400815
816 const GrCaps& caps = *fContext->priv().caps();
817
Brian Salomon7e67dca2020-07-21 09:27:25 -0400818 // We always say GrMipmapped::kNo here since we are always just copying from the base layer. We
Greg Danielbbfec9d2019-08-20 10:56:51 -0400819 // don't need to make sure the whole mip map chain is valid.
Brian Salomon7e67dca2020-07-21 09:27:25 -0400820 task->addDependency(this, srcProxy.get(), GrMipmapped::kNo,
Adlai Hollerd71b7b02020-06-08 15:55:00 -0400821 GrTextureResolveManager(this), caps);
Greg Danielbbfec9d2019-08-20 10:56:51 -0400822 task->makeClosed(caps);
823
Greg Danielbbfec9d2019-08-20 10:56:51 -0400824 // We have closed the previous active oplist but since a new oplist isn't being added there
825 // shouldn't be an active one.
Adlai Holler039f90c2020-11-19 15:20:31 +0000826 SkASSERT(!fActiveOpsTask);
Greg Danielbbfec9d2019-08-20 10:56:51 -0400827 SkDEBUGCODE(this->validate());
828}
829
Brian Salomon982127b2021-01-21 10:43:35 -0500830bool GrDrawingManager::newCopyRenderTask(sk_sp<GrSurfaceProxy> src,
831 SkIRect srcRect,
832 sk_sp<GrSurfaceProxy> dst,
Brian Salomon0f9f8002021-01-22 16:30:50 -0500833 SkIPoint dstPoint,
834 GrSurfaceOrigin origin) {
Greg Daniele227fe42019-08-21 13:52:24 -0400835 SkDEBUGCODE(this->validate());
836 SkASSERT(fContext);
Greg Daniele227fe42019-08-21 13:52:24 -0400837
Adlai Holler4ef108e2020-12-30 16:21:13 +0000838 this->closeActiveOpsTask();
Brian Salomone4bce012019-09-20 15:34:23 -0400839
Brian Salomon982127b2021-01-21 10:43:35 -0500840 GrRenderTask* task = this->appendTask(GrCopyRenderTask::Make(this,
841 src,
842 srcRect,
843 std::move(dst),
844 dstPoint,
Brian Salomon0f9f8002021-01-22 16:30:50 -0500845 origin));
Greg Daniele227fe42019-08-21 13:52:24 -0400846 if (!task) {
847 return false;
848 }
849
Brian Salomon0f9f8002021-01-22 16:30:50 -0500850 const GrCaps& caps = *fContext->priv().caps();
Brian Salomon7e67dca2020-07-21 09:27:25 -0400851 // We always say GrMipmapped::kNo here since we are always just copying from the base layer to
Greg Daniele227fe42019-08-21 13:52:24 -0400852 // another base layer. We don't need to make sure the whole mip map chain is valid.
Brian Salomon982127b2021-01-21 10:43:35 -0500853 task->addDependency(this, src.get(), GrMipmapped::kNo, GrTextureResolveManager(this), caps);
Greg Daniele227fe42019-08-21 13:52:24 -0400854 task->makeClosed(caps);
855
Greg Daniele227fe42019-08-21 13:52:24 -0400856 // We have closed the previous active oplist but since a new oplist isn't being added there
857 // shouldn't be an active one.
Adlai Holler039f90c2020-11-19 15:20:31 +0000858 SkASSERT(!fActiveOpsTask);
Greg Daniele227fe42019-08-21 13:52:24 -0400859 SkDEBUGCODE(this->validate());
860 return true;
861}
862
Brian Salomonbe1084b2021-01-26 13:29:30 -0500863bool GrDrawingManager::newWritePixelsTask(sk_sp<GrSurfaceProxy> dst,
864 SkIRect rect,
865 GrColorType srcColorType,
866 GrColorType dstColorType,
867 const GrMipLevel levels[],
868 int levelCount,
869 sk_sp<SkData> owner) {
870 SkDEBUGCODE(this->validate());
871 SkASSERT(fContext);
872
873 this->closeActiveOpsTask();
874 const GrCaps& caps = *fContext->priv().caps();
875
876 // On platforms that prefer flushes over VRAM use (i.e., ANGLE) we're better off forcing a
877 // complete flush here.
878 if (!caps.preferVRAMUseOverFlushes()) {
879 this->flushSurfaces(SkSpan<GrSurfaceProxy*>{},
880 SkSurface::BackendSurfaceAccess::kNoAccess,
881 GrFlushInfo{},
882 nullptr);
883 }
884
885 GrRenderTask* task = this->appendTask(GrWritePixelsTask::Make(this,
886 std::move(dst),
887 rect,
888 srcColorType,
889 dstColorType,
890 levels,
891 levelCount,
892 std::move(owner)));
893 if (!task) {
894 return false;
895 }
896
897 task->makeClosed(caps);
898
899 // We have closed the previous active oplist but since a new oplist isn't being added there
900 // shouldn't be an active one.
901 SkASSERT(!fActiveOpsTask);
902 SkDEBUGCODE(this->validate());
903 return true;
904}
905
robertphillips68737822015-10-29 12:12:21 -0700906/*
907 * This method finds a path renderer that can draw the specified path on
908 * the provided target.
909 * Due to its expense, the software path renderer has split out so it can
910 * can be individually allowed/disallowed via the "allowSW" boolean.
911 */
912GrPathRenderer* GrDrawingManager::getPathRenderer(const GrPathRenderer::CanDrawPathArgs& args,
913 bool allowSW,
914 GrPathRendererChain::DrawType drawType,
915 GrPathRenderer::StencilSupport* stencilSupport) {
916
917 if (!fPathRendererChain) {
John Stilesfbd050b2020-08-03 13:21:46 -0400918 fPathRendererChain =
919 std::make_unique<GrPathRendererChain>(fContext, fOptionsForPathRendererChain);
robertphillips68737822015-10-29 12:12:21 -0700920 }
921
922 GrPathRenderer* pr = fPathRendererChain->getPathRenderer(args, drawType, stencilSupport);
923 if (!pr && allowSW) {
Brian Salomone7df0bb2018-05-07 14:44:57 -0400924 auto swPR = this->getSoftwarePathRenderer();
925 if (GrPathRenderer::CanDrawPath::kNo != swPR->canDrawPath(args)) {
926 pr = swPR;
Brian Salomon0e8fc8b2016-12-09 15:10:07 -0500927 }
robertphillips68737822015-10-29 12:12:21 -0700928 }
929
Robert Phillipsd81379d2020-04-21 10:39:02 -0400930#if GR_PATH_RENDERER_SPEW
931 if (pr) {
932 SkDebugf("getPathRenderer: %s\n", pr->name());
933 }
934#endif
935
robertphillips68737822015-10-29 12:12:21 -0700936 return pr;
937}
938
Brian Salomone7df0bb2018-05-07 14:44:57 -0400939GrPathRenderer* GrDrawingManager::getSoftwarePathRenderer() {
940 if (!fSoftwarePathRenderer) {
Ben Wagner9ec70c62018-07-12 13:30:47 -0400941 fSoftwarePathRenderer.reset(
Robert Phillips9da87e02019-02-04 13:26:26 -0500942 new GrSoftwarePathRenderer(fContext->priv().proxyProvider(),
Ben Wagner9ec70c62018-07-12 13:30:47 -0400943 fOptionsForPathRendererChain.fAllowPathMaskCaching));
Brian Salomone7df0bb2018-05-07 14:44:57 -0400944 }
Ben Wagner9ec70c62018-07-12 13:30:47 -0400945 return fSoftwarePathRenderer.get();
Brian Salomone7df0bb2018-05-07 14:44:57 -0400946}
947
Chris Daltonfddb6c02017-11-04 15:22:22 -0600948GrCoverageCountingPathRenderer* GrDrawingManager::getCoverageCountingPathRenderer() {
949 if (!fPathRendererChain) {
Adlai Hollerc2bfcff2020-11-06 15:39:36 -0500950 fPathRendererChain = std::make_unique<GrPathRendererChain>(fContext,
951 fOptionsForPathRendererChain);
Chris Daltonfddb6c02017-11-04 15:22:22 -0600952 }
953 return fPathRendererChain->getCoverageCountingPathRenderer();
954}
955
Brian Salomon653f42f2018-07-10 10:07:31 -0400956void GrDrawingManager::flushIfNecessary() {
Robert Phillipsf8f45d92020-07-01 11:11:18 -0400957 auto direct = fContext->asDirectContext();
Robert Phillips6a6de562019-02-15 15:19:15 -0500958 if (!direct) {
959 return;
960 }
961
962 auto resourceCache = direct->priv().getResourceCache();
Brian Salomon653f42f2018-07-10 10:07:31 -0400963 if (resourceCache && resourceCache->requestsFlush()) {
Adlai Hollerc2bfcff2020-11-06 15:39:36 -0500964 if (this->flush({}, SkSurface::BackendSurfaceAccess::kNoAccess, GrFlushInfo(), nullptr)) {
Greg Danielfe159622020-04-10 17:43:51 +0000965 this->submitToGpu(false);
966 }
Brian Salomon57d2beab2018-09-10 09:35:41 -0400967 resourceCache->purgeAsNeeded();
Brian Salomon653f42f2018-07-10 10:07:31 -0400968 }
969}