blob: 707f463d970684228eb5d768fb30db76edeaa9e5 [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
8#ifndef GrBatchAtlas_DEFINED
9#define GrBatchAtlas_DEFINED
10
11#include "GrTexture.h"
12#include "SkPoint.h"
13#include "SkTDArray.h"
14#include "SkTInternalLList.h"
15
joshualittddd22d82016-02-16 06:47:52 -080016#include "batches/GrDrawBatch.h"
17
joshualitt5bf99f12015-03-13 11:47:42 -070018class GrRectanizer;
19
joshualittda04e0e2015-08-19 08:16:43 -070020struct GrBatchAtlasConfig {
21 int numPlotsX() const { return fWidth / fPlotWidth; }
22 int numPlotsY() const { return fHeight / fPlotWidth; }
23 int fWidth;
24 int fHeight;
jvanverth7023a002016-02-22 11:25:32 -080025 int fLog2Width;
26 int fLog2Height;
joshualittda04e0e2015-08-19 08:16:43 -070027 int fPlotWidth;
28 int fPlotHeight;
29};
30
joshualitt5bf99f12015-03-13 11:47:42 -070031class GrBatchAtlas {
32public:
joshualitt5bf99f12015-03-13 11:47:42 -070033 // An AtlasID is an opaque handle which callers can use to determine if the atlas contains
34 // a specific piece of data
joshualitt8db6fdc2015-07-31 08:25:07 -070035 typedef uint64_t AtlasID;
joshualitt7c3a2f82015-03-31 13:32:05 -070036 static const uint32_t kInvalidAtlasID = 0;
37 static const uint64_t kInvalidAtlasGeneration = 0;
joshualitt5bf99f12015-03-13 11:47:42 -070038
39 // A function pointer for use as a callback during eviction. Whenever GrBatchAtlas evicts a
40 // specific AtlasID, it will call all of the registered listeners so they can optionally process
41 // the eviction
42 typedef void (*EvictionFunc)(GrBatchAtlas::AtlasID, void*);
43
44 GrBatchAtlas(GrTexture*, int numPlotsX, int numPlotsY);
45 ~GrBatchAtlas();
46
47 // Adds a width x height subimage to the atlas. Upon success it returns
48 // the containing GrPlot and absolute location in the backing texture.
halcanary96fcdcc2015-08-27 07:41:13 -070049 // nullptr is returned if the subimage cannot fit in the atlas.
joshualitt5bf99f12015-03-13 11:47:42 -070050 // If provided, the image data will be written to the CPU-side backing bitmap.
joshualittb4c507e2015-04-08 08:07:59 -070051 // NOTE: If the client intends to refer to the atlas, they should immediately call 'setUseToken'
52 // with the currentToken from the batch target, otherwise the next call to addToAtlas might
53 // cause an eviction
bsalomon75398562015-08-17 12:55:38 -070054 bool addToAtlas(AtlasID*, GrDrawBatch::Target*, int width, int height, const void* image,
joshualitt5bf99f12015-03-13 11:47:42 -070055 SkIPoint16* loc);
56
57 GrTexture* getTexture() const { return fTexture; }
58
joshualitt7c3a2f82015-03-31 13:32:05 -070059 uint64_t atlasGeneration() const { return fAtlasGeneration; }
joshualitt5df175e2015-11-18 13:37:54 -080060
61 inline bool hasID(AtlasID id) {
62 uint32_t index = GetIndexFromID(id);
63 SkASSERT(index < fNumPlots);
64 return fPlotArray[index]->genID() == GetGenerationFromID(id);
65 }
joshualittb4c507e2015-04-08 08:07:59 -070066
67 // To ensure the atlas does not evict a given entry, the client must set the last use token
bsalomon342bfc22016-04-01 06:06:20 -070068 inline void setLastUseToken(AtlasID id, GrBatchDrawToken batchToken) {
joshualitt5df175e2015-11-18 13:37:54 -080069 SkASSERT(this->hasID(id));
70 uint32_t index = GetIndexFromID(id);
71 SkASSERT(index < fNumPlots);
72 this->makeMRU(fPlotArray[index]);
73 fPlotArray[index]->setLastUseToken(batchToken);
74 }
75
76 inline void registerEvictionCallback(EvictionFunc func, void* userData) {
joshualitt5bf99f12015-03-13 11:47:42 -070077 EvictionData* data = fEvictionCallbacks.append();
78 data->fFunc = func;
79 data->fData = userData;
80 }
81
joshualittb4c507e2015-04-08 08:07:59 -070082 /*
83 * A class which can be handed back to GrBatchAtlas for updating in bulk last use tokens. The
84 * current max number of plots the GrBatchAtlas can handle is 32, if in the future this is
85 * insufficient then we can move to a 64 bit int
86 */
87 class BulkUseTokenUpdater {
88 public:
joshualitt4314e082015-04-23 08:03:35 -070089 BulkUseTokenUpdater() : fPlotAlreadyUpdated(0) {}
joshualitt7e97b0b2015-07-31 15:18:08 -070090 BulkUseTokenUpdater(const BulkUseTokenUpdater& that)
91 : fPlotsToUpdate(that.fPlotsToUpdate)
92 , fPlotAlreadyUpdated(that.fPlotAlreadyUpdated) {
93 }
94
joshualittb4c507e2015-04-08 08:07:59 -070095 void add(AtlasID id) {
96 int index = GrBatchAtlas::GetIndexFromID(id);
97 if (!this->find(index)) {
98 this->set(index);
99 }
100 }
101
102 void reset() {
joshualitt4314e082015-04-23 08:03:35 -0700103 fPlotsToUpdate.reset();
joshualittb4c507e2015-04-08 08:07:59 -0700104 fPlotAlreadyUpdated = 0;
105 }
106
107 private:
108 bool find(int index) const {
109 SkASSERT(index < kMaxPlots);
110 return (fPlotAlreadyUpdated >> index) & 1;
111 }
112
113 void set(int index) {
114 SkASSERT(!this->find(index));
115 fPlotAlreadyUpdated = fPlotAlreadyUpdated | (1 << index);
joshualitt97202d22015-04-22 13:47:02 -0700116 fPlotsToUpdate.push_back(index);
joshualittb4c507e2015-04-08 08:07:59 -0700117 }
118
119 static const int kMinItems = 4;
120 static const int kMaxPlots = 32;
joshualitt97202d22015-04-22 13:47:02 -0700121 SkSTArray<kMinItems, int, true> fPlotsToUpdate;
joshualitt8672f4d2015-04-21 08:03:04 -0700122 uint32_t fPlotAlreadyUpdated;
joshualittb4c507e2015-04-08 08:07:59 -0700123
124 friend class GrBatchAtlas;
125 };
126
bsalomon342bfc22016-04-01 06:06:20 -0700127 void setLastUseTokenBulk(const BulkUseTokenUpdater& updater, GrBatchDrawToken batchToken) {
joshualitt5df175e2015-11-18 13:37:54 -0800128 int count = updater.fPlotsToUpdate.count();
129 for (int i = 0; i < count; i++) {
130 BatchPlot* plot = fPlotArray[updater.fPlotsToUpdate[i]];
131 this->makeMRU(plot);
132 plot->setLastUseToken(batchToken);
133 }
134 }
joshualittb4c507e2015-04-08 08:07:59 -0700135
joshualitt010db532015-04-21 10:07:26 -0700136 static const int kGlyphMaxDim = 256;
137 static bool GlyphTooLargeForAtlas(int width, int height) {
138 return width > kGlyphMaxDim || height > kGlyphMaxDim;
139 }
140
joshualitt5bf99f12015-03-13 11:47:42 -0700141private:
joshualitt5df175e2015-11-18 13:37:54 -0800142 // The backing GrTexture for a GrBatchAtlas is broken into a spatial grid of BatchPlots.
143 // The BatchPlots keep track of subimage placement via their GrRectanizer. A BatchPlot
144 // manages the lifetime of its data using two tokens, a last use token and a last upload token.
145 // Once a BatchPlot is "full" (i.e. there is no room for the new subimage according to the
146 // GrRectanizer), it can no longer be used unless the last use of the GrPlot has already been
147 // flushed through to the gpu.
148 class BatchPlot : public SkRefCnt {
149 SK_DECLARE_INTERNAL_LLIST_INTERFACE(BatchPlot);
150
151 public:
152 // index() is a unique id for the plot relative to the owning GrAtlas. genID() is a
153 // monotonically incremented number which is bumped every time this plot is
154 // evicted from the cache (i.e., there is continuity in genID() across atlas spills).
155 uint32_t index() const { return fIndex; }
156 uint64_t genID() const { return fGenID; }
157 GrBatchAtlas::AtlasID id() const {
158 SkASSERT(GrBatchAtlas::kInvalidAtlasID != fID);
159 return fID;
160 }
161 SkDEBUGCODE(size_t bpp() const { return fBytesPerPixel; })
162
163 bool addSubImage(int width, int height, const void* image, SkIPoint16* loc);
164
165 // To manage the lifetime of a plot, we use two tokens. We use the last upload token to
166 // know when we can 'piggy back' uploads, ie if the last upload hasn't been flushed to gpu,
167 // we don't need to issue a new upload even if we update the cpu backing store. We use
168 // lastUse to determine when we can evict a plot from the cache, ie if the last use has
169 // already flushed through the gpu then we can reuse the plot.
bsalomon342bfc22016-04-01 06:06:20 -0700170 GrBatchDrawToken lastUploadToken() const { return fLastUpload; }
171 GrBatchDrawToken lastUseToken() const { return fLastUse; }
172 void setLastUploadToken(GrBatchDrawToken batchToken) { fLastUpload = batchToken; }
173 void setLastUseToken(GrBatchDrawToken batchToken) { fLastUse = batchToken; }
joshualitt5df175e2015-11-18 13:37:54 -0800174
bsalomon342bfc22016-04-01 06:06:20 -0700175 void uploadToTexture(GrDrawBatch::WritePixelsFn&, GrTexture* texture);
joshualitt5df175e2015-11-18 13:37:54 -0800176 void resetRects();
177
178 private:
179 BatchPlot(int index, uint64_t genID, int offX, int offY, int width, int height,
180 GrPixelConfig config);
181
182 ~BatchPlot() override;
183
184 // Create a clone of this plot. The cloned plot will take the place of the
185 // current plot in the atlas.
186 BatchPlot* clone() const {
187 return new BatchPlot(fIndex, fGenID+1, fX, fY, fWidth, fHeight, fConfig);
188 }
189
190 static GrBatchAtlas::AtlasID CreateId(uint32_t index, uint64_t generation) {
191 SkASSERT(index < (1 << 16));
192 SkASSERT(generation < ((uint64_t)1 << 48));
193 return generation << 16 | index;
194 }
195
bsalomon342bfc22016-04-01 06:06:20 -0700196 GrBatchDrawToken fLastUpload;
197 GrBatchDrawToken fLastUse;
joshualitt5df175e2015-11-18 13:37:54 -0800198
199 const uint32_t fIndex;
200 uint64_t fGenID;
201 GrBatchAtlas::AtlasID fID;
202 unsigned char* fData;
203 const int fWidth;
204 const int fHeight;
205 const int fX;
206 const int fY;
207 GrRectanizer* fRects;
208 const SkIPoint16 fOffset; // the offset of the plot in the backing texture
209 const GrPixelConfig fConfig;
210 const size_t fBytesPerPixel;
211 SkIRect fDirtyRect;
212 SkDEBUGCODE(bool fDirty;)
213
214 friend class GrBatchAtlas;
215
216 typedef SkRefCnt INHERITED;
217 };
218
robertphillips2b0536f2015-11-06 14:10:42 -0800219 typedef SkTInternalLList<BatchPlot> GrBatchPlotList;
220
joshualitt8db6fdc2015-07-31 08:25:07 -0700221 static uint32_t GetIndexFromID(AtlasID id) {
joshualitt5bf99f12015-03-13 11:47:42 -0700222 return id & 0xffff;
223 }
224
joshualitt8db6fdc2015-07-31 08:25:07 -0700225 // top 48 bits are reserved for the generation ID
226 static uint64_t GetGenerationFromID(AtlasID id) {
227 return (id >> 16) & 0xffffffffffff;
joshualitt5bf99f12015-03-13 11:47:42 -0700228 }
229
bsalomon75398562015-08-17 12:55:38 -0700230 inline void updatePlot(GrDrawBatch::Target*, AtlasID*, BatchPlot*);
joshualitt5bf99f12015-03-13 11:47:42 -0700231
joshualitt5df175e2015-11-18 13:37:54 -0800232 inline void makeMRU(BatchPlot* plot) {
233 if (fPlotList.head() == plot) {
234 return;
235 }
236
237 fPlotList.remove(plot);
238 fPlotList.addToHead(plot);
239 }
joshualitt5bf99f12015-03-13 11:47:42 -0700240
241 inline void processEviction(AtlasID);
242
243 GrTexture* fTexture;
robertphillips2b0536f2015-11-06 14:10:42 -0800244 SkDEBUGCODE(uint32_t fNumPlots;)
245
joshualitt7c3a2f82015-03-31 13:32:05 -0700246 uint64_t fAtlasGeneration;
joshualitt5bf99f12015-03-13 11:47:42 -0700247
248 struct EvictionData {
249 EvictionFunc fFunc;
250 void* fData;
251 };
252
253 SkTDArray<EvictionData> fEvictionCallbacks;
254 // allocated array of GrBatchPlots
255 SkAutoTUnref<BatchPlot>* fPlotArray;
256 // LRU list of GrPlots (MRU at head - LRU at tail)
257 GrBatchPlotList fPlotList;
258};
259
260#endif