blob: 9c89ad8ccb925e82510e7ab255c737baf93b3b36 [file] [log] [blame]
joshualitt5bf99f12015-03-13 11:47:42 -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
Brian Salomon2ee084e2016-12-16 18:59:19 -05008#ifndef GrDrawOpAtlas_DEFINED
9#define GrDrawOpAtlas_DEFINED
joshualitt5bf99f12015-03-13 11:47:42 -070010
Herb Derby3c4d5332018-09-07 15:27:57 -040011#include <cmath>
Herb Derby1a496c52020-01-22 17:26:56 -050012#include <vector>
Herb Derby3c4d5332018-09-07 15:27:57 -040013
Robert Phillips51b3e602020-04-09 12:48:50 -040014#include "include/gpu/GrBackendSurface.h"
15#include "include/private/SkTArray.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050016#include "src/core/SkIPoint16.h"
Ben Wagner729a23f2019-05-17 16:29:34 -040017#include "src/core/SkTInternalLList.h"
Robert Phillips51b3e602020-04-09 12:48:50 -040018#include "src/gpu/GrDeferredUpload.h"
Herb Derby73c75872020-01-22 18:09:16 -050019#include "src/gpu/GrRectanizerSkyline.h"
Robert Phillips51b3e602020-04-09 12:48:50 -040020#include "src/gpu/GrSurfaceProxyView.h"
21#include "src/gpu/geometry/GrRect.h"
joshualittddd22d82016-02-16 06:47:52 -080022
Robert Phillipscd5099c2018-02-09 09:56:56 -050023class GrOnFlushResourceProvider;
Robert Phillips51b3e602020-04-09 12:48:50 -040024class GrProxyProvider;
25class GrResourceProvider;
26class GrTextureProxy;
joshualittda04e0e2015-08-19 08:16:43 -070027
Brian Salomon2ee084e2016-12-16 18:59:19 -050028/**
Jim Van Verth106b5c42017-09-26 12:45:29 -040029 * This class manages one or more atlas textures on behalf of GrDrawOps. The draw ops that use the
30 * atlas perform texture uploads when preparing their draws during flush. The class provides
31 * facilities for using GrDrawOpUploadToken to detect data hazards. Op's uploads are performed in
Brian Salomon29b60c92017-10-31 14:42:10 -040032 * "ASAP" mode until it is impossible to add data without overwriting texels read by draws that
Jim Van Verth106b5c42017-09-26 12:45:29 -040033 * have not yet executed on the gpu. At that point, the atlas will attempt to allocate a new
34 * atlas texture (or "page") of the same size, up to a maximum number of textures, and upload
35 * to that texture. If that's not possible, the uploads are performed "inline" between draws. If a
36 * single draw would use enough subimage space to overflow the atlas texture then the atlas will
37 * fail to add a subimage. This gives the op the chance to end the draw and begin a new one.
38 * Additional uploads will then succeed in inline mode.
39 *
40 * When the atlas has multiple pages, new uploads are prioritized to the lower index pages, i.e.,
41 * it will try to upload to page 0 before page 1 or 2. To keep the atlas from continually using
42 * excess space, periodic garbage collection is needed to shift data from the higher index pages to
43 * the lower ones, and then eventually remove any pages that are no longer in use. "In use" is
44 * determined by using the GrDrawUploadToken system: After a flush each subarea of the page
45 * is checked to see whether it was used in that flush; if it is not, a counter is incremented.
46 * Once that counter reaches a threshold that subarea is considered to be no longer in use.
47 *
48 * Garbage collection is initiated by the GrDrawOpAtlas's client via the compact() method. One
49 * solution is to make the client a subclass of GrOnFlushCallbackObject, register it with the
50 * GrContext via addOnFlushCallbackObject(), and the client's postFlush() method calls compact()
51 * and passes in the given GrDrawUploadToken.
Brian Salomon2ee084e2016-12-16 18:59:19 -050052 */
53class GrDrawOpAtlas {
Brian Salomon9f545bc2017-11-06 10:36:57 -050054private:
55 static constexpr auto kMaxMultitexturePages = 4;
56
joshualitt5bf99f12015-03-13 11:47:42 -070057public:
Brian Salomon9f545bc2017-11-06 10:36:57 -050058 /** Is the atlas allowed to use more than one texture? */
59 enum class AllowMultitexturing : bool { kNo, kYes };
60
Jim Van Verthf6206f92018-12-14 08:22:24 -050061 static constexpr int kMaxPlots = 32; // restricted by the fPlotAlreadyUpdated bitfield
62 // in BulkUseTokenUpdater
Herb Derbybbf5fb52018-10-15 16:39:39 -040063
Brian Salomon2ee084e2016-12-16 18:59:19 -050064 /**
Herb Derby4d721712020-01-24 14:31:16 -050065 * A PlotLocator specifies the plot and is analogous to a directory path:
66 * page/plot/plotGeneration
67 *
68 * In fact PlotLocator is a portion of a glyph image location in the atlas fully specified by:
69 * format/atlasGeneration/page/plot/plotGeneration/(u,v)
Brian Salomon2ee084e2016-12-16 18:59:19 -050070 */
Herb Derby4d721712020-01-24 14:31:16 -050071 typedef uint64_t PlotLocator;
72 static const uint64_t kInvalidPlotLocator = 0;
joshualitt7c3a2f82015-03-31 13:32:05 -070073 static const uint64_t kInvalidAtlasGeneration = 0;
joshualitt5bf99f12015-03-13 11:47:42 -070074
Robert Phillips6d3bc292020-04-06 10:29:28 -040075 class AtlasLocator {
76 public:
77 std::array<uint16_t, 4> getUVs(int padding) const;
78
79 // TODO: Remove the small path renderer's use of this for eviction
Robert Phillips51b3e602020-04-09 12:48:50 -040080 PlotLocator plotLocator() const { return fPlotLocator; }
Robert Phillips6d3bc292020-04-06 10:29:28 -040081
82 uint32_t pageIndex() const {
83 uint32_t pageIndex = fPlotLocator & 0xff;
84 SkASSERT(pageIndex < 4);
85 return pageIndex;
86 }
87
88 uint32_t plotIndex() const {
89 uint32_t plotIndex = (fPlotLocator >> 8) & 0xff;
90 SkASSERT(plotIndex < kMaxPlots);
91 return plotIndex;
92 }
93
94 uint64_t genID() const {
95 // top 48 bits are reserved for the generation ID
96 return (fPlotLocator >> 16) & 0xffffffffffff;
97 }
98
99 private:
100 friend class GrDrawOpAtlas;
101
Robert Phillips51b3e602020-04-09 12:48:50 -0400102 PlotLocator fPlotLocator{GrDrawOpAtlas::kInvalidPlotLocator};
103 GrIRect16 fRect{0, 0, 0, 0};
Robert Phillips6d3bc292020-04-06 10:29:28 -0400104
105 // TODO: the inset to the actual data w/in 'fRect' could also be stored in this class
106 // This would simplify the 'getUVs' call. The valid values would be 0, 1, 2 & 4.
107 };
108
Brian Salomon2ee084e2016-12-16 18:59:19 -0500109 /**
Herb Derby1a496c52020-01-22 17:26:56 -0500110 * An interface for eviction callbacks. Whenever GrDrawOpAtlas evicts a
Herb Derby4d721712020-01-24 14:31:16 -0500111 * specific PlotLocator, it will call all of the registered listeners so they can process the
Brian Salomon2ee084e2016-12-16 18:59:19 -0500112 * eviction.
113 */
Herb Derby1a496c52020-01-22 17:26:56 -0500114 class EvictionCallback {
115 public:
116 virtual ~EvictionCallback() = default;
Herb Derby4d721712020-01-24 14:31:16 -0500117 virtual void evict(PlotLocator plotLocator) = 0;
Herb Derby1a496c52020-01-22 17:26:56 -0500118 };
joshualitt5bf99f12015-03-13 11:47:42 -0700119
Robert Phillips256c37b2017-03-01 14:32:46 -0500120 /**
Herb Derby0ef780b2020-01-24 15:57:11 -0500121 * Keep track of generation number for Atlases and Plots.
122 */
123 class GenerationCounter {
124 public:
125 static constexpr uint64_t kInvalidGeneration = 0;
126 uint64_t next() {
127 return fGeneration++;
128 }
129
130 private:
131 uint64_t fGeneration{1};
132 };
133
134 /**
Robert Phillips256c37b2017-03-01 14:32:46 -0500135 * Returns a GrDrawOpAtlas. This function can be called anywhere, but the returned atlas
136 * should only be used inside of GrMeshDrawOp::onPrepareDraws.
Robert Phillips42dda082019-05-14 13:29:45 -0400137 * @param GrColorType The colorType which this atlas will store
Robert Phillips256c37b2017-03-01 14:32:46 -0500138 * @param width width in pixels of the atlas
139 * @param height height in pixels of the atlas
140 * @param numPlotsX The number of plots the atlas should be broken up into in the X
141 * direction
142 * @param numPlotsY The number of plots the atlas should be broken up into in the Y
143 * direction
Herb Derby0ef780b2020-01-24 15:57:11 -0500144 * @param atlasGeneration a pointer to the context's generation counter.
Brian Salomon9f545bc2017-11-06 10:36:57 -0500145 * @param allowMultitexturing Can the atlas use more than one texture.
Herb Derby1a496c52020-01-22 17:26:56 -0500146 * @param evictor A pointer to an eviction callback class.
147 *
Robert Phillips256c37b2017-03-01 14:32:46 -0500148 * @return An initialized GrDrawOpAtlas, or nullptr if creation fails
149 */
Greg Daniel4065d452018-11-16 15:43:41 -0500150 static std::unique_ptr<GrDrawOpAtlas> Make(GrProxyProvider*,
151 const GrBackendFormat& format,
Robert Phillips42dda082019-05-14 13:29:45 -0400152 GrColorType,
Robert Phillips4bc70112018-03-01 10:24:02 -0500153 int width, int height,
Jim Van Verthf6206f92018-12-14 08:22:24 -0500154 int plotWidth, int plotHeight,
Herb Derby0ef780b2020-01-24 15:57:11 -0500155 GenerationCounter* generationCounter,
Brian Salomon9f545bc2017-11-06 10:36:57 -0500156 AllowMultitexturing allowMultitexturing,
Herb Derby1a496c52020-01-22 17:26:56 -0500157 EvictionCallback* evictor);
joshualitt5bf99f12015-03-13 11:47:42 -0700158
Brian Salomon2ee084e2016-12-16 18:59:19 -0500159 /**
Jim Van Verthfb395102020-02-03 10:11:19 -0500160 * Packs a texture atlas page index into the uint16 texture coordinates.
161 * @param u U texture coordinate
162 * @param v V texture coordinate
163 * @param pageIndex index of the texture these coordinates apply to.
164 Must be in the range [0, 3].
165 * @return The new u and v coordinates with the packed value
166 */
167 static std::pair<uint16_t, uint16_t> PackIndexInTexCoords(uint16_t u, uint16_t v,
168 int pageIndex);
169 /**
170 * Unpacks a texture atlas page index from uint16 texture coordinates.
171 * @param u Packed U texture coordinate
172 * @param v Packed V texture coordinate
173 * @return The unpacked u and v coordinates with the page index.
174 */
175 static std::tuple<uint16_t, uint16_t, int> UnpackIndexFromTexCoords(uint16_t u, uint16_t v);
176
177 /**
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500178 * Adds a width x height subimage to the atlas. Upon success it returns 'kSucceeded' and returns
179 * the ID and the subimage's coordinates in the backing texture. 'kTryAgain' is returned if
180 * the subimage cannot fit in the atlas without overwriting texels that will be read in the
181 * current draw. This indicates that the op should end its current draw and begin another
182 * before adding more data. Upon success, an upload of the provided image data will have
183 * been added to the GrDrawOp::Target, in "asap" mode if possible, otherwise in "inline" mode.
184 * Successive uploads in either mode may be consolidated.
185 * 'kError' will be returned when some unrecoverable error was encountered while trying to
186 * add the subimage. In this case the op being created should be discarded.
187 *
Brian Salomon2ee084e2016-12-16 18:59:19 -0500188 * NOTE: When the GrDrawOp prepares a draw that reads from the atlas, it must immediately call
189 * 'setUseToken' with the currentToken from the GrDrawOp::Target, otherwise the next call to
190 * addToAtlas might cause the previous data to be overwritten before it has been read.
191 */
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500192
193 enum class ErrorCode {
194 kError,
195 kSucceeded,
196 kTryAgain
197 };
198
Robert Phillips6d3bc292020-04-06 10:29:28 -0400199 ErrorCode addToAtlas(GrResourceProvider*, GrDeferredUploadTarget*,
200 int width, int height, const void* image, AtlasLocator*);
joshualitt5bf99f12015-03-13 11:47:42 -0700201
Greg Daniel9715b6c2019-12-10 15:03:10 -0500202 const GrSurfaceProxyView* getViews() const { return fViews; }
joshualitt5bf99f12015-03-13 11:47:42 -0700203
joshualitt7c3a2f82015-03-31 13:32:05 -0700204 uint64_t atlasGeneration() const { return fAtlasGeneration; }
joshualitt5df175e2015-11-18 13:37:54 -0800205
Robert Phillips6d3bc292020-04-06 10:29:28 -0400206 bool hasID(const AtlasLocator& atlasLocator) {
207 if (kInvalidPlotLocator == atlasLocator.fPlotLocator) {
Robert Phillips4bc70112018-03-01 10:24:02 -0500208 return false;
209 }
Herb Derby4d721712020-01-24 14:31:16 -0500210
Robert Phillips6d3bc292020-04-06 10:29:28 -0400211 uint32_t plot = atlasLocator.plotIndex();
212 uint32_t page = atlasLocator.pageIndex();
Herb Derby0ef780b2020-01-24 15:57:11 -0500213 uint64_t plotGeneration = fPages[page].fPlotArray[plot]->genID();
Robert Phillips6d3bc292020-04-06 10:29:28 -0400214 uint64_t locatorGeneration = atlasLocator.genID();
Herb Derby0ef780b2020-01-24 15:57:11 -0500215 return plot < fNumPlots && page < fNumActivePages && plotGeneration == locatorGeneration;
joshualitt5df175e2015-11-18 13:37:54 -0800216 }
joshualittb4c507e2015-04-08 08:07:59 -0700217
Brian Salomon2ee084e2016-12-16 18:59:19 -0500218 /** To ensure the atlas does not evict a given entry, the client must set the last use token. */
Robert Phillips6d3bc292020-04-06 10:29:28 -0400219 void setLastUseToken(const AtlasLocator& atlasLocator, GrDeferredUploadToken token) {
220 SkASSERT(this->hasID(atlasLocator));
221 uint32_t plotIdx = atlasLocator.plotIndex();
Jim Van Vertha950b632017-09-12 11:54:11 -0400222 SkASSERT(plotIdx < fNumPlots);
Robert Phillips6d3bc292020-04-06 10:29:28 -0400223 uint32_t pageIdx = atlasLocator.pageIndex();
Robert Phillips4bc70112018-03-01 10:24:02 -0500224 SkASSERT(pageIdx < fNumActivePages);
Jim Van Vertha950b632017-09-12 11:54:11 -0400225 Plot* plot = fPages[pageIdx].fPlotArray[plotIdx].get();
226 this->makeMRU(plot, pageIdx);
227 plot->setLastUseToken(token);
joshualitt5df175e2015-11-18 13:37:54 -0800228 }
229
Robert Phillips4bc70112018-03-01 10:24:02 -0500230 uint32_t numActivePages() { return fNumActivePages; }
Jim Van Vertha950b632017-09-12 11:54:11 -0400231
Brian Salomon2ee084e2016-12-16 18:59:19 -0500232 /**
233 * A class which can be handed back to GrDrawOpAtlas for updating last use tokens in bulk. The
Jim Van Vertha950b632017-09-12 11:54:11 -0400234 * current max number of plots per page the GrDrawOpAtlas can handle is 32. If in the future
235 * this is insufficient then we can move to a 64 bit int.
joshualittb4c507e2015-04-08 08:07:59 -0700236 */
237 class BulkUseTokenUpdater {
238 public:
Jim Van Vertha950b632017-09-12 11:54:11 -0400239 BulkUseTokenUpdater() {
240 memset(fPlotAlreadyUpdated, 0, sizeof(fPlotAlreadyUpdated));
241 }
joshualitt7e97b0b2015-07-31 15:18:08 -0700242 BulkUseTokenUpdater(const BulkUseTokenUpdater& that)
Robert Phillips6d3bc292020-04-06 10:29:28 -0400243 : fPlotsToUpdate(that.fPlotsToUpdate) {
Jim Van Vertha950b632017-09-12 11:54:11 -0400244 memcpy(fPlotAlreadyUpdated, that.fPlotAlreadyUpdated, sizeof(fPlotAlreadyUpdated));
joshualitt7e97b0b2015-07-31 15:18:08 -0700245 }
246
Robert Phillips6d3bc292020-04-06 10:29:28 -0400247 bool add(const AtlasLocator& atlasLocator) {
248 int plotIdx = atlasLocator.plotIndex();
249 int pageIdx = atlasLocator.pageIndex();
250 if (this->find(pageIdx, plotIdx)) {
Jim Van Verthba98b7d2018-12-05 12:33:43 -0500251 return false;
joshualittb4c507e2015-04-08 08:07:59 -0700252 }
Robert Phillips6d3bc292020-04-06 10:29:28 -0400253 this->set(pageIdx, plotIdx);
Jim Van Verthba98b7d2018-12-05 12:33:43 -0500254 return true;
joshualittb4c507e2015-04-08 08:07:59 -0700255 }
256
257 void reset() {
joshualitt4314e082015-04-23 08:03:35 -0700258 fPlotsToUpdate.reset();
Jim Van Vertha950b632017-09-12 11:54:11 -0400259 memset(fPlotAlreadyUpdated, 0, sizeof(fPlotAlreadyUpdated));
joshualittb4c507e2015-04-08 08:07:59 -0700260 }
261
Jim Van Vertha950b632017-09-12 11:54:11 -0400262 struct PlotData {
263 PlotData(int pageIdx, int plotIdx) : fPageIndex(pageIdx), fPlotIndex(plotIdx) {}
264 uint32_t fPageIndex;
265 uint32_t fPlotIndex;
266 };
267
joshualittb4c507e2015-04-08 08:07:59 -0700268 private:
Jim Van Vertha950b632017-09-12 11:54:11 -0400269 bool find(int pageIdx, int index) const {
joshualittb4c507e2015-04-08 08:07:59 -0700270 SkASSERT(index < kMaxPlots);
Jim Van Vertha950b632017-09-12 11:54:11 -0400271 return (fPlotAlreadyUpdated[pageIdx] >> index) & 1;
joshualittb4c507e2015-04-08 08:07:59 -0700272 }
273
Jim Van Vertha950b632017-09-12 11:54:11 -0400274 void set(int pageIdx, int index) {
275 SkASSERT(!this->find(pageIdx, index));
276 fPlotAlreadyUpdated[pageIdx] |= (1 << index);
277 fPlotsToUpdate.push_back(PlotData(pageIdx, index));
joshualittb4c507e2015-04-08 08:07:59 -0700278 }
279
Jim Van Vertha950b632017-09-12 11:54:11 -0400280 static constexpr int kMinItems = 4;
Jim Van Vertha950b632017-09-12 11:54:11 -0400281 SkSTArray<kMinItems, PlotData, true> fPlotsToUpdate;
Jim Van Verthf6206f92018-12-14 08:22:24 -0500282 uint32_t fPlotAlreadyUpdated[kMaxMultitexturePages]; // TODO: increase this to uint64_t
283 // to allow more plots per page
joshualittb4c507e2015-04-08 08:07:59 -0700284
Brian Salomon2ee084e2016-12-16 18:59:19 -0500285 friend class GrDrawOpAtlas;
joshualittb4c507e2015-04-08 08:07:59 -0700286 };
287
Brian Salomon943ed792017-10-30 09:37:55 -0400288 void setLastUseTokenBulk(const BulkUseTokenUpdater& updater, GrDeferredUploadToken token) {
joshualitt5df175e2015-11-18 13:37:54 -0800289 int count = updater.fPlotsToUpdate.count();
290 for (int i = 0; i < count; i++) {
Jim Van Vertha950b632017-09-12 11:54:11 -0400291 const BulkUseTokenUpdater::PlotData& pd = updater.fPlotsToUpdate[i];
Jim Van Verthc3269ae2017-09-28 15:04:00 -0400292 // it's possible we've added a plot to the updater and subsequently the plot's page
293 // was deleted -- so we check to prevent a crash
Robert Phillips4bc70112018-03-01 10:24:02 -0500294 if (pd.fPageIndex < fNumActivePages) {
Jim Van Verth6ca9c6f2017-09-27 18:04:34 -0400295 Plot* plot = fPages[pd.fPageIndex].fPlotArray[pd.fPlotIndex].get();
296 this->makeMRU(plot, pd.fPageIndex);
297 plot->setLastUseToken(token);
298 }
joshualitt5df175e2015-11-18 13:37:54 -0800299 }
300 }
joshualittb4c507e2015-04-08 08:07:59 -0700301
Brian Salomon943ed792017-10-30 09:37:55 -0400302 void compact(GrDeferredUploadToken startTokenForNextFlush);
Jim Van Verth106b5c42017-09-26 12:45:29 -0400303
Robert Phillipscd5099c2018-02-09 09:56:56 -0500304 void instantiate(GrOnFlushResourceProvider*);
305
Brian Salomon9f545bc2017-11-06 10:36:57 -0500306 uint32_t maxPages() const {
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500307 return fMaxPages;
Brian Salomon9f545bc2017-11-06 10:36:57 -0500308 }
309
Robert Phillips4bc70112018-03-01 10:24:02 -0500310 int numAllocated_TestingOnly() const;
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500311 void setMaxPages_TestingOnly(uint32_t maxPages);
Robert Phillips4bc70112018-03-01 10:24:02 -0500312
313private:
Robert Phillips42dda082019-05-14 13:29:45 -0400314 GrDrawOpAtlas(GrProxyProvider*, const GrBackendFormat& format, GrColorType, int width,
Herb Derby0ef780b2020-01-24 15:57:11 -0500315 int height, int plotWidth, int plotHeight, GenerationCounter* generationCounter,
Greg Daniel4065d452018-11-16 15:43:41 -0500316 AllowMultitexturing allowMultitexturing);
Robert Phillips256c37b2017-03-01 14:32:46 -0500317
Brian Salomon2ee084e2016-12-16 18:59:19 -0500318 /**
319 * The backing GrTexture for a GrDrawOpAtlas is broken into a spatial grid of Plots. The Plots
320 * keep track of subimage placement via their GrRectanizer. A Plot manages the lifetime of its
321 * data using two tokens, a last use token and a last upload token. Once a Plot is "full" (i.e.
322 * there is no room for the new subimage according to the GrRectanizer), it can no longer be
323 * used unless the last use of the Plot has already been flushed through to the gpu.
324 */
325 class Plot : public SkRefCnt {
326 SK_DECLARE_INTERNAL_LLIST_INTERFACE(Plot);
joshualitt5df175e2015-11-18 13:37:54 -0800327
328 public:
Robert Phillips6d3bc292020-04-06 10:29:28 -0400329 uint32_t pageIndex() const { return fPageIndex; }
330
331 /** plotIndex() is a unique id for the plot relative to the owning GrAtlas and page. */
332 uint32_t plotIndex() const { return fPlotIndex; }
Brian Salomon2ee084e2016-12-16 18:59:19 -0500333 /**
334 * genID() is incremented when the plot is evicted due to a atlas spill. It is used to know
335 * if a particular subimage is still present in the atlas.
336 */
joshualitt5df175e2015-11-18 13:37:54 -0800337 uint64_t genID() const { return fGenID; }
Herb Derby4d721712020-01-24 14:31:16 -0500338 GrDrawOpAtlas::PlotLocator plotLocator() const {
339 SkASSERT(GrDrawOpAtlas::kInvalidPlotLocator != fPlotLocator);
340 return fPlotLocator;
joshualitt5df175e2015-11-18 13:37:54 -0800341 }
342 SkDEBUGCODE(size_t bpp() const { return fBytesPerPixel; })
343
Robert Phillips6d3bc292020-04-06 10:29:28 -0400344 bool addSubImage(int width, int height, const void* image, GrIRect16* rect);
joshualitt5df175e2015-11-18 13:37:54 -0800345
Brian Salomon2ee084e2016-12-16 18:59:19 -0500346 /**
347 * To manage the lifetime of a plot, we use two tokens. We use the last upload token to
348 * know when we can 'piggy back' uploads, i.e. if the last upload hasn't been flushed to
349 * the gpu, we don't need to issue a new upload even if we update the cpu backing store. We
350 * use lastUse to determine when we can evict a plot from the cache, i.e. if the last use
351 * has already flushed through the gpu then we can reuse the plot.
352 */
Brian Salomon943ed792017-10-30 09:37:55 -0400353 GrDeferredUploadToken lastUploadToken() const { return fLastUpload; }
354 GrDeferredUploadToken lastUseToken() const { return fLastUse; }
355 void setLastUploadToken(GrDeferredUploadToken token) { fLastUpload = token; }
356 void setLastUseToken(GrDeferredUploadToken token) { fLastUse = token; }
joshualitt5df175e2015-11-18 13:37:54 -0800357
Brian Salomon943ed792017-10-30 09:37:55 -0400358 void uploadToTexture(GrDeferredTextureUploadWritePixelsFn&, GrTextureProxy*);
joshualitt5df175e2015-11-18 13:37:54 -0800359 void resetRects();
360
Jim Van Verth106b5c42017-09-26 12:45:29 -0400361 int flushesSinceLastUsed() { return fFlushesSinceLastUse; }
362 void resetFlushesSinceLastUsed() { fFlushesSinceLastUse = 0; }
363 void incFlushesSinceLastUsed() { fFlushesSinceLastUse++; }
364
joshualitt5df175e2015-11-18 13:37:54 -0800365 private:
Herb Derby0ef780b2020-01-24 15:57:11 -0500366 Plot(int pageIndex, int plotIndex, GenerationCounter* generationCounter,
367 int offX, int offY, int width, int height, GrColorType colorType);
joshualitt5df175e2015-11-18 13:37:54 -0800368
Brian Salomon2ee084e2016-12-16 18:59:19 -0500369 ~Plot() override;
joshualitt5df175e2015-11-18 13:37:54 -0800370
Brian Salomon2ee084e2016-12-16 18:59:19 -0500371 /**
372 * Create a clone of this plot. The cloned plot will take the place of the current plot in
373 * the atlas
374 */
375 Plot* clone() const {
Herb Derby0ef780b2020-01-24 15:57:11 -0500376 return new Plot(
377 fPageIndex, fPlotIndex, fGenerationCounter, fX, fY, fWidth, fHeight, fColorType);
joshualitt5df175e2015-11-18 13:37:54 -0800378 }
379
Herb Derby4d721712020-01-24 14:31:16 -0500380 static GrDrawOpAtlas::PlotLocator CreatePlotLocator(
381 uint32_t pageIdx, uint32_t plotIdx, uint64_t generation) {
Jim Van Vertha950b632017-09-12 11:54:11 -0400382 SkASSERT(pageIdx < (1 << 8));
Brian Salomon9f545bc2017-11-06 10:36:57 -0500383 SkASSERT(pageIdx < kMaxMultitexturePages);
Jim Van Vertha950b632017-09-12 11:54:11 -0400384 SkASSERT(plotIdx < (1 << 8));
joshualitt5df175e2015-11-18 13:37:54 -0800385 SkASSERT(generation < ((uint64_t)1 << 48));
Jim Van Vertha950b632017-09-12 11:54:11 -0400386 return generation << 16 | plotIdx << 8 | pageIdx;
joshualitt5df175e2015-11-18 13:37:54 -0800387 }
388
Brian Salomon943ed792017-10-30 09:37:55 -0400389 GrDeferredUploadToken fLastUpload;
390 GrDeferredUploadToken fLastUse;
Jim Van Verth106b5c42017-09-26 12:45:29 -0400391 // the number of flushes since this plot has been last used
392 int fFlushesSinceLastUse;
joshualitt5df175e2015-11-18 13:37:54 -0800393
Jim Van Vertha950b632017-09-12 11:54:11 -0400394 struct {
395 const uint32_t fPageIndex : 16;
396 const uint32_t fPlotIndex : 16;
397 };
Herb Derby0ef780b2020-01-24 15:57:11 -0500398 GenerationCounter* const fGenerationCounter;
Brian Salomon2ee084e2016-12-16 18:59:19 -0500399 uint64_t fGenID;
Herb Derby4d721712020-01-24 14:31:16 -0500400 GrDrawOpAtlas::PlotLocator fPlotLocator;
Brian Salomon2ee084e2016-12-16 18:59:19 -0500401 unsigned char* fData;
402 const int fWidth;
403 const int fHeight;
404 const int fX;
405 const int fY;
Herb Derby73c75872020-01-22 18:09:16 -0500406 GrRectanizerSkyline fRectanizer;
Brian Salomon2ee084e2016-12-16 18:59:19 -0500407 const SkIPoint16 fOffset; // the offset of the plot in the backing texture
Robert Phillips42dda082019-05-14 13:29:45 -0400408 const GrColorType fColorType;
Brian Salomon2ee084e2016-12-16 18:59:19 -0500409 const size_t fBytesPerPixel;
410 SkIRect fDirtyRect;
411 SkDEBUGCODE(bool fDirty);
joshualitt5df175e2015-11-18 13:37:54 -0800412
Brian Salomon2ee084e2016-12-16 18:59:19 -0500413 friend class GrDrawOpAtlas;
joshualitt5df175e2015-11-18 13:37:54 -0800414
415 typedef SkRefCnt INHERITED;
416 };
417
Brian Salomon2ee084e2016-12-16 18:59:19 -0500418 typedef SkTInternalLList<Plot> PlotList;
robertphillips2b0536f2015-11-06 14:10:42 -0800419
Robert Phillips6d3bc292020-04-06 10:29:28 -0400420 inline bool updatePlot(GrDeferredUploadTarget*, AtlasLocator*, Plot*);
joshualitt5bf99f12015-03-13 11:47:42 -0700421
Jim Van Vertha950b632017-09-12 11:54:11 -0400422 inline void makeMRU(Plot* plot, int pageIdx) {
423 if (fPages[pageIdx].fPlotList.head() == plot) {
joshualitt5df175e2015-11-18 13:37:54 -0800424 return;
425 }
426
Jim Van Vertha950b632017-09-12 11:54:11 -0400427 fPages[pageIdx].fPlotList.remove(plot);
428 fPages[pageIdx].fPlotList.addToHead(plot);
429
Jim Van Verth106b5c42017-09-26 12:45:29 -0400430 // No MRU update for pages -- since we will always try to add from
431 // the front and remove from the back there is no need for MRU.
joshualitt5df175e2015-11-18 13:37:54 -0800432 }
joshualitt5bf99f12015-03-13 11:47:42 -0700433
Robert Phillips6d3bc292020-04-06 10:29:28 -0400434 bool uploadToPage(const GrCaps&, unsigned int pageIdx, GrDeferredUploadTarget*,
435 int width, int height, const void* image, AtlasLocator*);
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500436
Herb Derby0ef780b2020-01-24 15:57:11 -0500437 bool createPages(GrProxyProvider*, GenerationCounter*);
Robert Phillips4bc70112018-03-01 10:24:02 -0500438 bool activateNewPage(GrResourceProvider*);
439 void deactivateLastPage();
Jim Van Vertheafa64b2017-09-18 10:05:00 -0400440
Herb Derby4d721712020-01-24 14:31:16 -0500441 void processEviction(PlotLocator);
Jim Van Verthc3269ae2017-09-28 15:04:00 -0400442 inline void processEvictionAndResetRects(Plot* plot) {
Herb Derby4d721712020-01-24 14:31:16 -0500443 this->processEviction(plot->plotLocator());
Jim Van Verthc3269ae2017-09-28 15:04:00 -0400444 plot->resetRects();
445 }
joshualitt5bf99f12015-03-13 11:47:42 -0700446
Greg Daniel4065d452018-11-16 15:43:41 -0500447 GrBackendFormat fFormat;
Robert Phillips42dda082019-05-14 13:29:45 -0400448 GrColorType fColorType;
Jim Van Verthd74f3f22017-08-31 16:44:08 -0400449 int fTextureWidth;
450 int fTextureHeight;
Robert Phillips32f28182017-02-28 16:20:03 -0500451 int fPlotWidth;
452 int fPlotHeight;
Jim Van Verth06f593c2018-02-20 11:30:10 -0500453 unsigned int fNumPlots;
robertphillips2b0536f2015-11-06 14:10:42 -0800454
Herb Derby0ef780b2020-01-24 15:57:11 -0500455 GenerationCounter* const fGenerationCounter;
456 uint64_t fAtlasGeneration;
457
Jim Van Verth106b5c42017-09-26 12:45:29 -0400458 // nextTokenToFlush() value at the end of the previous flush
Brian Salomon943ed792017-10-30 09:37:55 -0400459 GrDeferredUploadToken fPrevFlushToken;
joshualitt5bf99f12015-03-13 11:47:42 -0700460
Jim Van Verth77eb96d2020-03-18 12:32:34 -0400461 // the number of flushes since this atlas has been last used
462 int fFlushesSinceLastUse;
463
Herb Derby1a496c52020-01-22 17:26:56 -0500464 std::vector<EvictionCallback*> fEvictionCallbacks;
Jim Van Vertha950b632017-09-12 11:54:11 -0400465
466 struct Page {
467 // allocated array of Plots
468 std::unique_ptr<sk_sp<Plot>[]> fPlotArray;
469 // LRU list of Plots (MRU at head - LRU at tail)
470 PlotList fPlotList;
471 };
472 // proxies kept separate to make it easier to pass them up to client
Greg Daniel9715b6c2019-12-10 15:03:10 -0500473 GrSurfaceProxyView fViews[kMaxMultitexturePages];
Brian Salomon9f545bc2017-11-06 10:36:57 -0500474 Page fPages[kMaxMultitexturePages];
Robert Phillipsd2e9f762018-03-07 11:54:37 -0500475 uint32_t fMaxPages;
Robert Phillips4bc70112018-03-01 10:24:02 -0500476
477 uint32_t fNumActivePages;
joshualitt5bf99f12015-03-13 11:47:42 -0700478};
479
Herb Derbybbf5fb52018-10-15 16:39:39 -0400480// There are three atlases (A8, 565, ARGB) that are kept in relation with one another. In
Jim Van Verthf6206f92018-12-14 08:22:24 -0500481// general, the A8 dimensions are 2x the 565 and ARGB dimensions with the constraint that an atlas
Herb Derbybbf5fb52018-10-15 16:39:39 -0400482// size will always contain at least one plot. Since the ARGB atlas takes the most space, its
483// dimensions are used to size the other two atlases.
484class GrDrawOpAtlasConfig {
485public:
Jim Van Verthf6206f92018-12-14 08:22:24 -0500486 // The capabilities of the GPU define maxTextureSize. The client provides maxBytes, and this
487 // represents the largest they want a single atlas texture to be. Due to multitexturing, we
488 // may expand temporarily to use more space as needed.
489 GrDrawOpAtlasConfig(int maxTextureSize, size_t maxBytes);
Herb Derbybbf5fb52018-10-15 16:39:39 -0400490
Jim Van Verthf6206f92018-12-14 08:22:24 -0500491 // For testing only - make minimum sized atlases -- a single plot for ARGB, four for A8
492 GrDrawOpAtlasConfig() : GrDrawOpAtlasConfig(kMaxAtlasDim, 0) {}
Herb Derbybbf5fb52018-10-15 16:39:39 -0400493
Herb Derby15d9ef22018-10-18 13:41:32 -0400494 SkISize atlasDimensions(GrMaskFormat type) const;
Jim Van Verthf6206f92018-12-14 08:22:24 -0500495 SkISize plotDimensions(GrMaskFormat type) const;
Herb Derbybbf5fb52018-10-15 16:39:39 -0400496
497private:
Jim Van Verthf6206f92018-12-14 08:22:24 -0500498 // On some systems texture coordinates are represented using half-precision floating point,
499 // which limits the largest atlas dimensions to 2048x2048.
500 // For simplicity we'll use this constraint for all of our atlas textures.
501 // This can be revisited later if we need larger atlases.
502 static constexpr int kMaxAtlasDim = 2048;
Herb Derbybbf5fb52018-10-15 16:39:39 -0400503
Jim Van Verthf6206f92018-12-14 08:22:24 -0500504 SkISize fARGBDimensions;
505 int fMaxTextureSize;
Herb Derbybbf5fb52018-10-15 16:39:39 -0400506};
507
joshualitt5bf99f12015-03-13 11:47:42 -0700508#endif