robertphillips | 77a2e52 | 2015-10-17 07:43:27 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
| 8 | #ifndef GrDrawingManager_DEFINED |
| 9 | #define GrDrawingManager_DEFINED |
| 10 | |
Robert Phillips | 15c9142 | 2019-05-07 16:54:48 -0400 | [diff] [blame] | 11 | #include <set> |
Mike Klein | c0bd9f9 | 2019-04-23 12:05:21 -0500 | [diff] [blame] | 12 | #include "include/core/SkSurface.h" |
| 13 | #include "include/private/SkTArray.h" |
| 14 | #include "src/gpu/GrBufferAllocPool.h" |
| 15 | #include "src/gpu/GrDeferredUpload.h" |
| 16 | #include "src/gpu/GrPathRenderer.h" |
| 17 | #include "src/gpu/GrPathRendererChain.h" |
| 18 | #include "src/gpu/GrResourceCache.h" |
| 19 | #include "src/gpu/text/GrTextContext.h" |
Robert Phillips | f2361d2 | 2016-10-25 14:20:06 -0400 | [diff] [blame] | 20 | |
Chris Dalton | fddb6c0 | 2017-11-04 15:22:22 -0600 | [diff] [blame] | 21 | class GrCoverageCountingPathRenderer; |
Robert Phillips | fbcef6e | 2017-06-15 12:07:18 -0400 | [diff] [blame] | 22 | class GrOnFlushCallbackObject; |
Herb Derby | dc214c2 | 2018-11-08 13:31:39 -0500 | [diff] [blame] | 23 | class GrOpFlushState; |
Robert Phillips | 6989370 | 2019-02-22 11:16:30 -0500 | [diff] [blame] | 24 | class GrRecordingContext; |
Brian Osman | 1105224 | 2016-10-27 14:47:55 -0400 | [diff] [blame] | 25 | class GrRenderTargetContext; |
Robert Phillips | c7635fa | 2016-10-28 13:25:24 -0400 | [diff] [blame] | 26 | class GrRenderTargetProxy; |
Brian Salomon | 653f42f | 2018-07-10 10:07:31 -0400 | [diff] [blame] | 27 | class GrRenderTargetOpList; |
robertphillips | 6873782 | 2015-10-29 12:12:21 -0700 | [diff] [blame] | 28 | class GrSoftwarePathRenderer; |
Brian Osman | 45580d3 | 2016-11-23 09:37:01 -0500 | [diff] [blame] | 29 | class GrTextureContext; |
| 30 | class GrTextureOpList; |
Brian Salomon | 653f42f | 2018-07-10 10:07:31 -0400 | [diff] [blame] | 31 | class SkDeferredDisplayList; |
robertphillips | 77a2e52 | 2015-10-17 07:43:27 -0700 | [diff] [blame] | 32 | |
Brian Osman | 1105224 | 2016-10-27 14:47:55 -0400 | [diff] [blame] | 33 | // The GrDrawingManager allocates a new GrRenderTargetContext for each GrRenderTarget |
Robert Phillips | f2361d2 | 2016-10-25 14:20:06 -0400 | [diff] [blame] | 34 | // but all of them still land in the same GrOpList! |
robertphillips | 77a2e52 | 2015-10-17 07:43:27 -0700 | [diff] [blame] | 35 | // |
Brian Osman | 1105224 | 2016-10-27 14:47:55 -0400 | [diff] [blame] | 36 | // In the future this class will allocate a new GrRenderTargetContext for |
Robert Phillips | f2361d2 | 2016-10-25 14:20:06 -0400 | [diff] [blame] | 37 | // each GrRenderTarget/GrOpList and manage the DAG. |
robertphillips | 77a2e52 | 2015-10-17 07:43:27 -0700 | [diff] [blame] | 38 | class GrDrawingManager { |
| 39 | public: |
| 40 | ~GrDrawingManager(); |
| 41 | |
robertphillips | 6873782 | 2015-10-29 12:12:21 -0700 | [diff] [blame] | 42 | void freeGpuResources(); |
robertphillips | 77a2e52 | 2015-10-17 07:43:27 -0700 | [diff] [blame] | 43 | |
Robert Phillips | 3743013 | 2016-11-09 06:50:43 -0500 | [diff] [blame] | 44 | sk_sp<GrRenderTargetContext> makeRenderTargetContext(sk_sp<GrSurfaceProxy>, |
Brian Salomon | d628747 | 2019-06-24 15:50:07 -0400 | [diff] [blame^] | 45 | GrColorType, |
Brian Osman | 1105224 | 2016-10-27 14:47:55 -0400 | [diff] [blame] | 46 | sk_sp<SkColorSpace>, |
Robert Phillips | 941d144 | 2017-06-14 16:37:02 -0400 | [diff] [blame] | 47 | const SkSurfaceProps*, |
| 48 | bool managedOpList = true); |
Brian Salomon | e7499c7 | 2019-06-24 12:12:36 -0400 | [diff] [blame] | 49 | sk_sp<GrTextureContext> makeTextureContext(sk_sp<GrSurfaceProxy>, |
Brian Salomon | d628747 | 2019-06-24 15:50:07 -0400 | [diff] [blame^] | 50 | GrColorType, |
Brian Salomon | e7499c7 | 2019-06-24 12:12:36 -0400 | [diff] [blame] | 51 | SkAlphaType, |
| 52 | sk_sp<SkColorSpace>); |
robertphillips | 77a2e52 | 2015-10-17 07:43:27 -0700 | [diff] [blame] | 53 | |
Robert Phillips | 941d144 | 2017-06-14 16:37:02 -0400 | [diff] [blame] | 54 | // A managed opList is controlled by the drawing manager (i.e., sorted & flushed with the |
Robert Phillips | 831a293 | 2019-04-12 17:18:39 -0400 | [diff] [blame] | 55 | // others). An unmanaged one is created and used by the onFlushCallback. |
| 56 | sk_sp<GrRenderTargetOpList> newRTOpList(sk_sp<GrRenderTargetProxy>, bool managedOpList); |
| 57 | sk_sp<GrTextureOpList> newTextureOpList(sk_sp<GrTextureProxy>); |
robertphillips | 77a2e52 | 2015-10-17 07:43:27 -0700 | [diff] [blame] | 58 | |
Robert Phillips | 6989370 | 2019-02-22 11:16:30 -0500 | [diff] [blame] | 59 | GrRecordingContext* getContext() { return fContext; } |
robertphillips | 77a2e52 | 2015-10-17 07:43:27 -0700 | [diff] [blame] | 60 | |
Herb Derby | 26cbe51 | 2018-05-24 14:39:01 -0400 | [diff] [blame] | 61 | GrTextContext* getTextContext(); |
brianosman | 86e7626 | 2016-08-11 12:17:31 -0700 | [diff] [blame] | 62 | |
robertphillips | 6873782 | 2015-10-29 12:12:21 -0700 | [diff] [blame] | 63 | GrPathRenderer* getPathRenderer(const GrPathRenderer::CanDrawPathArgs& args, |
| 64 | bool allowSW, |
| 65 | GrPathRendererChain::DrawType drawType, |
Ben Wagner | a93a14a | 2017-08-28 10:34:05 -0400 | [diff] [blame] | 66 | GrPathRenderer::StencilSupport* stencilSupport = nullptr); |
robertphillips | 6873782 | 2015-10-29 12:12:21 -0700 | [diff] [blame] | 67 | |
Brian Salomon | e7df0bb | 2018-05-07 14:44:57 -0400 | [diff] [blame] | 68 | GrPathRenderer* getSoftwarePathRenderer(); |
| 69 | |
Chris Dalton | fddb6c0 | 2017-11-04 15:22:22 -0600 | [diff] [blame] | 70 | // Returns a direct pointer to the coverage counting path renderer, or null if it is not |
| 71 | // supported and turned on. |
| 72 | GrCoverageCountingPathRenderer* getCoverageCountingPathRenderer(); |
| 73 | |
Brian Salomon | 653f42f | 2018-07-10 10:07:31 -0400 | [diff] [blame] | 74 | void flushIfNecessary(); |
bsalomon | b77a907 | 2016-09-07 10:02:04 -0700 | [diff] [blame] | 75 | |
Greg Daniel | 78325c1 | 2017-06-19 16:39:13 -0400 | [diff] [blame] | 76 | static bool ProgramUnitTest(GrContext* context, int maxStages, int maxLevels); |
robertphillips | a13e202 | 2015-11-11 12:01:09 -0800 | [diff] [blame] | 77 | |
Brian Salomon | f9a1fdf | 2019-05-09 10:30:12 -0400 | [diff] [blame] | 78 | GrSemaphoresSubmitted flushSurfaces(GrSurfaceProxy* proxies[], |
| 79 | int cnt, |
| 80 | SkSurface::BackendSurfaceAccess access, |
| 81 | const GrFlushInfo& info); |
| 82 | GrSemaphoresSubmitted flushSurface(GrSurfaceProxy* proxy, |
Greg Daniel | 4aa13e7 | 2019-04-15 14:42:20 -0400 | [diff] [blame] | 83 | SkSurface::BackendSurfaceAccess access, |
Brian Salomon | f9a1fdf | 2019-05-09 10:30:12 -0400 | [diff] [blame] | 84 | const GrFlushInfo& info) { |
| 85 | return this->flushSurfaces(&proxy, 1, access, info); |
| 86 | } |
bsalomon | 6a2b194 | 2016-09-08 11:28:59 -0700 | [diff] [blame] | 87 | |
Chris Dalton | fe199b7 | 2017-05-05 11:26:15 -0400 | [diff] [blame] | 88 | void addOnFlushCallbackObject(GrOnFlushCallbackObject*); |
Robert Phillips | dbaf317 | 2019-02-06 15:12:53 -0500 | [diff] [blame] | 89 | |
| 90 | #if GR_TEST_UTILS |
Chris Dalton | fe199b7 | 2017-05-05 11:26:15 -0400 | [diff] [blame] | 91 | void testingOnly_removeOnFlushCallbackObject(GrOnFlushCallbackObject*); |
Robert Phillips | dbaf317 | 2019-02-06 15:12:53 -0500 | [diff] [blame] | 92 | #endif |
Robert Phillips | eb35f4d | 2017-03-21 07:56:47 -0400 | [diff] [blame] | 93 | |
Robert Phillips | 6200036 | 2018-02-01 09:10:04 -0500 | [diff] [blame] | 94 | void moveOpListsToDDL(SkDeferredDisplayList* ddl); |
| 95 | void copyOpListsFromDDL(const SkDeferredDisplayList*, GrRenderTargetProxy* newDest); |
| 96 | |
robertphillips | 77a2e52 | 2015-10-17 07:43:27 -0700 | [diff] [blame] | 97 | private: |
Robert Phillips | 22310d6 | 2018-09-05 11:07:21 -0400 | [diff] [blame] | 98 | // This class encapsulates maintenance and manipulation of the drawing manager's DAG of opLists. |
| 99 | class OpListDAG { |
| 100 | public: |
Robert Phillips | 12c4629 | 2019-04-23 07:36:17 -0400 | [diff] [blame] | 101 | OpListDAG(bool sortOpLists); |
Robert Phillips | 22310d6 | 2018-09-05 11:07:21 -0400 | [diff] [blame] | 102 | ~OpListDAG(); |
| 103 | |
| 104 | // Currently, when explicitly allocating resources, this call will topologically sort the |
| 105 | // opLists. |
| 106 | // MDB TODO: remove once incremental opList sorting is enabled |
| 107 | void prepForFlush(); |
| 108 | |
| 109 | void closeAll(const GrCaps* caps); |
| 110 | |
| 111 | // A yucky combination of closeAll and reset |
| 112 | void cleanup(const GrCaps* caps); |
| 113 | |
| 114 | void gatherIDs(SkSTArray<8, uint32_t, true>* idArray) const; |
| 115 | |
| 116 | void reset(); |
| 117 | |
| 118 | // These calls forceably remove an opList from the DAG. They are problematic bc they just |
| 119 | // remove the opList but don't cleanup any refering pointers (i.e., dependency pointers |
| 120 | // in the DAG). They work right now bc they are only called at flush time, after the |
| 121 | // topological sort is complete (so the dangling pointers aren't used). |
| 122 | void removeOpList(int index); |
| 123 | void removeOpLists(int startIndex, int stopIndex); |
| 124 | |
| 125 | bool empty() const { return fOpLists.empty(); } |
| 126 | int numOpLists() const { return fOpLists.count(); } |
| 127 | |
Robert Phillips | 9313aa7 | 2019-04-09 18:41:27 -0400 | [diff] [blame] | 128 | bool isUsed(GrSurfaceProxy*) const; |
| 129 | |
Robert Phillips | 22310d6 | 2018-09-05 11:07:21 -0400 | [diff] [blame] | 130 | GrOpList* opList(int index) { return fOpLists[index].get(); } |
| 131 | const GrOpList* opList(int index) const { return fOpLists[index].get(); } |
| 132 | |
| 133 | GrOpList* back() { return fOpLists.back().get(); } |
| 134 | const GrOpList* back() const { return fOpLists.back().get(); } |
| 135 | |
| 136 | void add(sk_sp<GrOpList>); |
| 137 | void add(const SkTArray<sk_sp<GrOpList>>&); |
| 138 | |
| 139 | void swap(SkTArray<sk_sp<GrOpList>>* opLists); |
| 140 | |
Robert Phillips | 46acf9d | 2018-10-09 09:31:40 -0400 | [diff] [blame] | 141 | bool sortingOpLists() const { return fSortOpLists; } |
| 142 | |
Robert Phillips | 22310d6 | 2018-09-05 11:07:21 -0400 | [diff] [blame] | 143 | private: |
| 144 | SkTArray<sk_sp<GrOpList>> fOpLists; |
| 145 | bool fSortOpLists; |
| 146 | }; |
| 147 | |
Robert Phillips | 6989370 | 2019-02-22 11:16:30 -0500 | [diff] [blame] | 148 | GrDrawingManager(GrRecordingContext*, const GrPathRendererChain::Options&, |
Robert Phillips | 0d075de | 2019-03-04 11:08:13 -0500 | [diff] [blame] | 149 | const GrTextContext::Options&, |
Robert Phillips | 56181ba | 2019-03-08 12:00:45 -0500 | [diff] [blame] | 150 | bool sortOpLists, |
Robert Phillips | 6db27c2 | 2019-05-01 10:43:56 -0400 | [diff] [blame] | 151 | bool reduceOpListSplitting); |
robertphillips | 77a2e52 | 2015-10-17 07:43:27 -0700 | [diff] [blame] | 152 | |
Robert Phillips | a9162df | 2019-02-11 14:12:03 -0500 | [diff] [blame] | 153 | bool wasAbandoned() const; |
| 154 | |
robertphillips | 77a2e52 | 2015-10-17 07:43:27 -0700 | [diff] [blame] | 155 | void cleanup(); |
Robert Phillips | eafd48a | 2017-11-16 07:52:08 -0500 | [diff] [blame] | 156 | |
| 157 | // return true if any opLists were actually executed; false otherwise |
Greg Daniel | d207345 | 2018-12-07 11:20:33 -0500 | [diff] [blame] | 158 | bool executeOpLists(int startIndex, int stopIndex, GrOpFlushState*, int* numOpListsExecuted); |
Robert Phillips | eafd48a | 2017-11-16 07:52:08 -0500 | [diff] [blame] | 159 | |
Brian Salomon | f9a1fdf | 2019-05-09 10:30:12 -0400 | [diff] [blame] | 160 | GrSemaphoresSubmitted flush(GrSurfaceProxy* proxies[], |
| 161 | int numProxies, |
Greg Daniel | bae7121 | 2019-03-01 15:24:35 -0500 | [diff] [blame] | 162 | SkSurface::BackendSurfaceAccess access, |
Greg Daniel | 797efca | 2019-05-09 14:04:20 -0400 | [diff] [blame] | 163 | const GrFlushInfo&, |
| 164 | const GrPrepareForExternalIORequests&); |
robertphillips | 77a2e52 | 2015-10-17 07:43:27 -0700 | [diff] [blame] | 165 | |
Robert Phillips | 38d64b0 | 2018-09-04 13:23:26 -0400 | [diff] [blame] | 166 | SkDEBUGCODE(void validate() const); |
| 167 | |
Robert Phillips | 6989370 | 2019-02-22 11:16:30 -0500 | [diff] [blame] | 168 | friend class GrContext; // access to: flush & cleanup |
Robert Phillips | 7ee385e | 2017-03-30 08:02:11 -0400 | [diff] [blame] | 169 | friend class GrContextPriv; // access to: flush |
Chris Dalton | fe199b7 | 2017-05-05 11:26:15 -0400 | [diff] [blame] | 170 | friend class GrOnFlushResourceProvider; // this is just a shallow wrapper around this class |
Robert Phillips | 6989370 | 2019-02-22 11:16:30 -0500 | [diff] [blame] | 171 | friend class GrRecordingContext; // access to: ctor |
Greg Daniel | b6c15ba | 2019-03-04 13:08:25 -0500 | [diff] [blame] | 172 | friend class SkImage; // for access to: flush |
robertphillips | 77a2e52 | 2015-10-17 07:43:27 -0700 | [diff] [blame] | 173 | |
| 174 | static const int kNumPixelGeometries = 5; // The different pixel geometries |
| 175 | static const int kNumDFTOptions = 2; // DFT or no DFT |
| 176 | |
Robert Phillips | 6989370 | 2019-02-22 11:16:30 -0500 | [diff] [blame] | 177 | GrRecordingContext* fContext; |
bsalomon | 6b2552f | 2016-09-15 13:50:26 -0700 | [diff] [blame] | 178 | GrPathRendererChain::Options fOptionsForPathRendererChain; |
Herb Derby | 26cbe51 | 2018-05-24 14:39:01 -0400 | [diff] [blame] | 179 | GrTextContext::Options fOptionsForTextContext; |
Brian Salomon | 601ac80 | 2019-02-07 13:37:16 -0500 | [diff] [blame] | 180 | // This cache is used by both the vertex and index pools. It reuses memory across multiple |
| 181 | // flushes. |
| 182 | sk_sp<GrBufferAllocPool::CpuBufferCache> fCpuBufferCache; |
joshualitt | de8dc7e | 2016-01-08 10:09:13 -0800 | [diff] [blame] | 183 | |
Robert Phillips | 22310d6 | 2018-09-05 11:07:21 -0400 | [diff] [blame] | 184 | OpListDAG fDAG; |
Robert Phillips | 38d64b0 | 2018-09-04 13:23:26 -0400 | [diff] [blame] | 185 | GrOpList* fActiveOpList = nullptr; |
Chris Dalton | 3968ff9 | 2017-11-27 12:26:31 -0700 | [diff] [blame] | 186 | // These are the IDs of the opLists currently being flushed (in internalFlush) |
| 187 | SkSTArray<8, uint32_t, true> fFlushingOpListIDs; |
| 188 | // These are the new opLists generated by the onFlush CBs |
| 189 | SkSTArray<8, sk_sp<GrOpList>> fOnFlushCBOpLists; |
robertphillips | 77a2e52 | 2015-10-17 07:43:27 -0700 | [diff] [blame] | 190 | |
Herb Derby | 26cbe51 | 2018-05-24 14:39:01 -0400 | [diff] [blame] | 191 | std::unique_ptr<GrTextContext> fTextContext; |
robertphillips | a13e202 | 2015-11-11 12:01:09 -0800 | [diff] [blame] | 192 | |
Ben Wagner | 9ec70c6 | 2018-07-12 13:30:47 -0400 | [diff] [blame] | 193 | std::unique_ptr<GrPathRendererChain> fPathRendererChain; |
| 194 | sk_sp<GrSoftwarePathRenderer> fSoftwarePathRenderer; |
brianosman | 86e7626 | 2016-08-11 12:17:31 -0700 | [diff] [blame] | 195 | |
Robert Phillips | 40a29d7 | 2018-01-18 12:59:22 -0500 | [diff] [blame] | 196 | GrTokenTracker fTokenTracker; |
brianosman | 86e7626 | 2016-08-11 12:17:31 -0700 | [diff] [blame] | 197 | bool fFlushing; |
Robert Phillips | 46acf9d | 2018-10-09 09:31:40 -0400 | [diff] [blame] | 198 | bool fReduceOpListSplitting; |
bsalomon | b77a907 | 2016-09-07 10:02:04 -0700 | [diff] [blame] | 199 | |
Chris Dalton | fe199b7 | 2017-05-05 11:26:15 -0400 | [diff] [blame] | 200 | SkTArray<GrOnFlushCallbackObject*> fOnFlushCBObjects; |
Robert Phillips | 15c9142 | 2019-05-07 16:54:48 -0400 | [diff] [blame] | 201 | |
| 202 | void addDDLTarget(GrSurfaceProxy* proxy) { fDDLTargets.insert(proxy); } |
| 203 | bool isDDLTarget(GrSurfaceProxy* proxy) { return fDDLTargets.find(proxy) != fDDLTargets.end(); } |
| 204 | void clearDDLTargets() { fDDLTargets.clear(); } |
| 205 | |
| 206 | // We play a trick with lazy proxies to retarget the base target of a DDL to the SkSurface |
| 207 | // it is replayed on. Because of this remapping we need to explicitly store the targets of |
| 208 | // DDL replaying. |
| 209 | // Note: we do not expect a whole lot of these per flush |
| 210 | std::set<GrSurfaceProxy*> fDDLTargets; |
robertphillips | 77a2e52 | 2015-10-17 07:43:27 -0700 | [diff] [blame] | 211 | }; |
| 212 | |
| 213 | #endif |