epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 1 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 2 | /* |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 3 | * Copyright 2010 Google Inc. |
| 4 | * |
| 5 | * Use of this source code is governed by a BSD-style license that can be |
| 6 | * found in the LICENSE file. |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 10 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 11 | #include "GrAtlas.h" |
bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame^] | 12 | #include "GrContext.h" |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 13 | #include "GrGpu.h" |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 14 | #include "GrRectanizer.h" |
| 15 | #include "GrPlotMgr.h" |
| 16 | |
| 17 | #if 0 |
| 18 | #define GR_PLOT_WIDTH 8 |
| 19 | #define GR_PLOT_HEIGHT 4 |
| 20 | #define GR_ATLAS_WIDTH 256 |
| 21 | #define GR_ATLAS_HEIGHT 256 |
| 22 | |
| 23 | #define GR_ATLAS_TEXTURE_WIDTH (GR_PLOT_WIDTH * GR_ATLAS_WIDTH) |
| 24 | #define GR_ATLAS_TEXTURE_HEIGHT (GR_PLOT_HEIGHT * GR_ATLAS_HEIGHT) |
| 25 | |
| 26 | #else |
| 27 | |
| 28 | #define GR_ATLAS_TEXTURE_WIDTH 1024 |
| 29 | #define GR_ATLAS_TEXTURE_HEIGHT 2048 |
| 30 | |
| 31 | #define GR_ATLAS_WIDTH 341 |
| 32 | #define GR_ATLAS_HEIGHT 341 |
| 33 | |
| 34 | #define GR_PLOT_WIDTH (GR_ATLAS_TEXTURE_WIDTH / GR_ATLAS_WIDTH) |
| 35 | #define GR_PLOT_HEIGHT (GR_ATLAS_TEXTURE_HEIGHT / GR_ATLAS_HEIGHT) |
| 36 | |
| 37 | #endif |
| 38 | |
| 39 | /////////////////////////////////////////////////////////////////////////////// |
| 40 | |
| 41 | #define BORDER 1 |
| 42 | |
| 43 | #if GR_DEBUG |
| 44 | static int gCounter; |
| 45 | #endif |
| 46 | |
reed@google.com | 98539c6 | 2011-03-15 15:40:16 +0000 | [diff] [blame] | 47 | GrAtlas::GrAtlas(GrAtlasMgr* mgr, int plotX, int plotY, GrMaskFormat format) { |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 48 | fAtlasMgr = mgr; // just a pointer, not an owner |
| 49 | fNext = NULL; |
reed@google.com | 759c16e | 2011-03-15 19:15:15 +0000 | [diff] [blame] | 50 | fTexture = mgr->getTexture(format); // we're not an owner, just a pointer |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 51 | fPlot.set(plotX, plotY); |
| 52 | |
| 53 | fRects = GrRectanizer::Factory(GR_ATLAS_WIDTH - BORDER, |
| 54 | GR_ATLAS_HEIGHT - BORDER); |
| 55 | |
reed@google.com | 98539c6 | 2011-03-15 15:40:16 +0000 | [diff] [blame] | 56 | fMaskFormat = format; |
| 57 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 58 | #if GR_DEBUG |
reed@google.com | 3ef80cf | 2011-07-05 19:09:47 +0000 | [diff] [blame] | 59 | // GrPrintf(" GrAtlas %p [%d %d] %d\n", this, plotX, plotY, gCounter); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 60 | gCounter += 1; |
| 61 | #endif |
| 62 | } |
| 63 | |
| 64 | GrAtlas::~GrAtlas() { |
| 65 | fAtlasMgr->freePlot(fPlot.fX, fPlot.fY); |
| 66 | |
| 67 | delete fRects; |
| 68 | |
| 69 | #if GR_DEBUG |
| 70 | --gCounter; |
reed@google.com | 3ef80cf | 2011-07-05 19:09:47 +0000 | [diff] [blame] | 71 | // GrPrintf("~GrAtlas %p [%d %d] %d\n", this, fPlot.fX, fPlot.fY, gCounter); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 72 | #endif |
| 73 | } |
| 74 | |
| 75 | static void adjustForPlot(GrIPoint16* loc, const GrIPoint16& plot) { |
| 76 | loc->fX += plot.fX * GR_ATLAS_WIDTH; |
| 77 | loc->fY += plot.fY * GR_ATLAS_HEIGHT; |
| 78 | } |
| 79 | |
reed@google.com | 98539c6 | 2011-03-15 15:40:16 +0000 | [diff] [blame] | 80 | static uint8_t* zerofill(uint8_t* ptr, int count) { |
| 81 | while (--count >= 0) { |
| 82 | *ptr++ = 0; |
| 83 | } |
| 84 | return ptr; |
| 85 | } |
| 86 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 87 | bool GrAtlas::addSubImage(int width, int height, const void* image, |
| 88 | GrIPoint16* loc) { |
| 89 | if (!fRects->addRect(width + BORDER, height + BORDER, loc)) { |
| 90 | return false; |
| 91 | } |
| 92 | |
bsalomon@google.com | 3582bf9 | 2011-06-30 21:32:31 +0000 | [diff] [blame] | 93 | SkAutoSMalloc<1024> storage; |
reed@google.com | 98539c6 | 2011-03-15 15:40:16 +0000 | [diff] [blame] | 94 | int dstW = width + 2*BORDER; |
| 95 | int dstH = height + 2*BORDER; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 96 | if (BORDER) { |
reed@google.com | 98539c6 | 2011-03-15 15:40:16 +0000 | [diff] [blame] | 97 | const int bpp = GrMaskFormatBytesPerPixel(fMaskFormat); |
| 98 | const size_t dstRB = dstW * bpp; |
bsalomon@google.com | 7d4679a | 2011-09-02 22:06:24 +0000 | [diff] [blame] | 99 | uint8_t* dst = (uint8_t*)storage.reset(dstH * dstRB); |
reed@google.com | 98539c6 | 2011-03-15 15:40:16 +0000 | [diff] [blame] | 100 | Gr_bzero(dst, dstRB); // zero top row |
| 101 | dst += dstRB; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 102 | for (int y = 0; y < height; y++) { |
reed@google.com | 98539c6 | 2011-03-15 15:40:16 +0000 | [diff] [blame] | 103 | dst = zerofill(dst, bpp); // zero left edge |
| 104 | memcpy(dst, image, width * bpp); |
| 105 | dst += width * bpp; |
| 106 | dst = zerofill(dst, bpp); // zero right edge |
| 107 | image = (const void*)((const char*)image + width * bpp); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 108 | } |
reed@google.com | 98539c6 | 2011-03-15 15:40:16 +0000 | [diff] [blame] | 109 | Gr_bzero(dst, dstRB); // zero bottom row |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 110 | image = storage.get(); |
| 111 | } |
| 112 | adjustForPlot(loc, fPlot); |
bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame^] | 113 | GrContext* context = fTexture->getContext(); |
| 114 | // We call the internal version so that we don't force a flush. We assume |
| 115 | // our caller is smart and hasn't referenced the part of the texture we're |
| 116 | // about to update since the last flush. |
| 117 | context->internalWriteTexturePixels(fTexture, loc->fX, loc->fY, |
| 118 | dstW, dstH, fTexture->config(), |
| 119 | image, 0, |
| 120 | GrContext::kDontFlush_PixelOpsFlag); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 121 | |
| 122 | // now tell the caller to skip the top/left BORDER |
| 123 | loc->fX += BORDER; |
| 124 | loc->fY += BORDER; |
| 125 | return true; |
| 126 | } |
| 127 | |
| 128 | /////////////////////////////////////////////////////////////////////////////// |
| 129 | |
| 130 | GrAtlasMgr::GrAtlasMgr(GrGpu* gpu) { |
| 131 | fGpu = gpu; |
| 132 | gpu->ref(); |
reed@google.com | 759c16e | 2011-03-15 19:15:15 +0000 | [diff] [blame] | 133 | Gr_bzero(fTexture, sizeof(fTexture)); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 134 | fPlotMgr = new GrPlotMgr(GR_PLOT_WIDTH, GR_PLOT_HEIGHT); |
| 135 | } |
| 136 | |
| 137 | GrAtlasMgr::~GrAtlasMgr() { |
reed@google.com | 759c16e | 2011-03-15 19:15:15 +0000 | [diff] [blame] | 138 | for (size_t i = 0; i < GR_ARRAY_COUNT(fTexture); i++) { |
| 139 | GrSafeUnref(fTexture[i]); |
| 140 | } |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 141 | delete fPlotMgr; |
| 142 | fGpu->unref(); |
| 143 | } |
| 144 | |
bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 145 | static GrPixelConfig maskformat2pixelconfig(GrMaskFormat format) { |
reed@google.com | 98539c6 | 2011-03-15 15:40:16 +0000 | [diff] [blame] | 146 | switch (format) { |
| 147 | case kA8_GrMaskFormat: |
bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 148 | return kAlpha_8_GrPixelConfig; |
reed@google.com | 98539c6 | 2011-03-15 15:40:16 +0000 | [diff] [blame] | 149 | case kA565_GrMaskFormat: |
bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 150 | return kRGB_565_GrPixelConfig; |
caryclark@google.com | 1eeaf0b | 2011-06-22 13:19:43 +0000 | [diff] [blame] | 151 | case kA888_GrMaskFormat: |
bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 152 | return kSkia8888_PM_GrPixelConfig; |
reed@google.com | 98539c6 | 2011-03-15 15:40:16 +0000 | [diff] [blame] | 153 | default: |
| 154 | GrAssert(!"unknown maskformat"); |
| 155 | } |
bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 156 | return kUnknown_GrPixelConfig; |
reed@google.com | 98539c6 | 2011-03-15 15:40:16 +0000 | [diff] [blame] | 157 | } |
| 158 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 159 | GrAtlas* GrAtlasMgr::addToAtlas(GrAtlas* atlas, |
| 160 | int width, int height, const void* image, |
reed@google.com | 98539c6 | 2011-03-15 15:40:16 +0000 | [diff] [blame] | 161 | GrMaskFormat format, |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 162 | GrIPoint16* loc) { |
reed@google.com | 98539c6 | 2011-03-15 15:40:16 +0000 | [diff] [blame] | 163 | GrAssert(NULL == atlas || atlas->getMaskFormat() == format); |
reed@google.com | 759c16e | 2011-03-15 19:15:15 +0000 | [diff] [blame] | 164 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 165 | if (atlas && atlas->addSubImage(width, height, image, loc)) { |
| 166 | return atlas; |
| 167 | } |
| 168 | |
| 169 | // If the above fails, then either we have no starting atlas, or the current |
| 170 | // one is full. Either way we need to allocate a new atlas |
| 171 | |
| 172 | GrIPoint16 plot; |
| 173 | if (!fPlotMgr->newPlot(&plot)) { |
| 174 | return NULL; |
| 175 | } |
| 176 | |
reed@google.com | 759c16e | 2011-03-15 19:15:15 +0000 | [diff] [blame] | 177 | GrAssert(0 == kA8_GrMaskFormat); |
| 178 | GrAssert(1 == kA565_GrMaskFormat); |
| 179 | if (NULL == fTexture[format]) { |
bsalomon@google.com | fea37b5 | 2011-04-25 15:51:06 +0000 | [diff] [blame] | 180 | GrTextureDesc desc = { |
| 181 | kDynamicUpdate_GrTextureFlagBit, |
| 182 | kNone_GrAALevel, |
reed@google.com | 98539c6 | 2011-03-15 15:40:16 +0000 | [diff] [blame] | 183 | GR_ATLAS_TEXTURE_WIDTH, |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 184 | GR_ATLAS_TEXTURE_HEIGHT, |
tomhudson@google.com | f74ad8c | 2011-11-09 22:15:08 +0000 | [diff] [blame] | 185 | { maskformat2pixelconfig(format) } |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 186 | }; |
reed@google.com | 759c16e | 2011-03-15 19:15:15 +0000 | [diff] [blame] | 187 | fTexture[format] = fGpu->createTexture(desc, NULL, 0); |
| 188 | if (NULL == fTexture[format]) { |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 189 | return NULL; |
| 190 | } |
| 191 | } |
| 192 | |
reed@google.com | 98539c6 | 2011-03-15 15:40:16 +0000 | [diff] [blame] | 193 | GrAtlas* newAtlas = new GrAtlas(this, plot.fX, plot.fY, format); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 194 | if (!newAtlas->addSubImage(width, height, image, loc)) { |
| 195 | delete newAtlas; |
| 196 | return NULL; |
| 197 | } |
| 198 | |
| 199 | newAtlas->fNext = atlas; |
| 200 | return newAtlas; |
| 201 | } |
| 202 | |
| 203 | void GrAtlasMgr::freePlot(int x, int y) { |
| 204 | GrAssert(fPlotMgr->isBusy(x, y)); |
| 205 | fPlotMgr->freePlot(x, y); |
| 206 | } |
| 207 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 208 | |