| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #ifndef GrBatchAtlas_DEFINED | 8 #ifndef GrBatchAtlas_DEFINED |
| 9 #define GrBatchAtlas_DEFINED | 9 #define GrBatchAtlas_DEFINED |
| 10 | 10 |
| 11 #include "GrTexture.h" | 11 #include "GrTexture.h" |
| 12 #include "SkPoint.h" | 12 #include "SkPoint.h" |
| 13 #include "SkTDArray.h" | 13 #include "SkTDArray.h" |
| 14 #include "SkTInternalLList.h" | 14 #include "SkTInternalLList.h" |
| 15 | 15 |
| 16 #include "batches/GrDrawBatch.h" | 16 #include "batches/GrDrawBatch.h" |
| 17 | 17 |
| 18 class GrRectanizer; | 18 class GrRectanizer; |
| 19 | 19 |
| 20 struct GrBatchAtlasConfig { | 20 struct GrBatchAtlasConfig { |
| 21 int numPlotsX() const { return fWidth / fPlotWidth; } | 21 int numPlotsX() const { return fWidth / fPlotWidth; } |
| 22 int numPlotsY() const { return fHeight / fPlotWidth; } | 22 int numPlotsY() const { return fHeight / fPlotWidth; } |
| 23 int fWidth; | 23 int fWidth; |
| 24 int fHeight; | 24 int fHeight; |
| 25 int fLog2Width; | |
| 26 int fLog2Height; | |
| 27 int fPlotWidth; | 25 int fPlotWidth; |
| 28 int fPlotHeight; | 26 int fPlotHeight; |
| 29 }; | 27 }; |
| 30 | 28 |
| 31 class GrBatchAtlas { | 29 class GrBatchAtlas { |
| 32 public: | 30 public: |
| 33 // An AtlasID is an opaque handle which callers can use to determine if the
atlas contains | 31 // An AtlasID is an opaque handle which callers can use to determine if the
atlas contains |
| 34 // a specific piece of data | 32 // a specific piece of data |
| 35 typedef uint64_t AtlasID; | 33 typedef uint64_t AtlasID; |
| 36 static const uint32_t kInvalidAtlasID = 0; | 34 static const uint32_t kInvalidAtlasID = 0; |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 }; | 257 }; |
| 260 | 258 |
| 261 SkTDArray<EvictionData> fEvictionCallbacks; | 259 SkTDArray<EvictionData> fEvictionCallbacks; |
| 262 // allocated array of GrBatchPlots | 260 // allocated array of GrBatchPlots |
| 263 SkAutoTUnref<BatchPlot>* fPlotArray; | 261 SkAutoTUnref<BatchPlot>* fPlotArray; |
| 264 // LRU list of GrPlots (MRU at head - LRU at tail) | 262 // LRU list of GrPlots (MRU at head - LRU at tail) |
| 265 GrBatchPlotList fPlotList; | 263 GrBatchPlotList fPlotList; |
| 266 }; | 264 }; |
| 267 | 265 |
| 268 #endif | 266 #endif |
| OLD | NEW |